package com.tdmconsult.ete.documents;
import org.jspecify.annotations.Nullable;
public record DocumentAttachmentDto(
String publicId,
@Nullable String fileName,
long fileSize,
@Nullable String fileContentType,
String uploadBy,
byte @Nullable[] fileData
) {
}