15 lines
289 B
C#
15 lines
289 B
C#
namespace MinAttest.Contracts.Attests;
|
|
|
|
public record EmployerAttestUploadRequest(
|
|
Guid PersonId,
|
|
string Title,
|
|
DateOnly From,
|
|
DateOnly To,
|
|
string? Summary,
|
|
string BlobPath,
|
|
string? BlobHash,
|
|
string? ContentBase64,
|
|
string? ContentType
|
|
);
|
|
|