change package
Test Workflow / test (push) Waiting to run

This commit is contained in:
vladp
2025-12-17 13:41:05 +07:00
parent 58b4a2f95f
commit 641e983b89
65 changed files with 163 additions and 167 deletions
@@ -0,0 +1,15 @@
package ru.soune.nocopy.dto;
import jakarta.validation.constraints.Email;
import jakarta.validation.constraints.NotBlank;
public record UserContentRequest(
@NotBlank @Email String userEmail,
@NotBlank String fileName,
@NotBlank String originalFilename,
@NotBlank String fileType,
@NotBlank String fileExtension,
@NotBlank Long fileSize,
@NotBlank String filePath,
Integer protectionLevel
) {}