2025-11-26 13:03:20 +07:00
|
|
|
package ru.soune.no_copy.dto;
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import ru.soune.no_copy.entity.FileType;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class UserContentDTO {
|
|
|
|
|
String fileName;
|
|
|
|
|
String originalFilename;
|
|
|
|
|
String fileType;
|
|
|
|
|
String fileExtension;
|
|
|
|
|
Long fileSize;
|
|
|
|
|
String filePath;
|
|
|
|
|
Integer protectionLevel;
|
|
|
|
|
}
|