Initial import
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
namespace MinAttest.Contracts.Attests;
|
||||
|
||||
public record AttestSummary(
|
||||
Guid Id,
|
||||
string Employer,
|
||||
string Title,
|
||||
DateOnly From,
|
||||
DateOnly To,
|
||||
bool Verified
|
||||
);
|
||||
|
||||
public record AttestDetails(
|
||||
Guid Id,
|
||||
string Employer,
|
||||
string Title,
|
||||
DateOnly From,
|
||||
DateOnly To,
|
||||
string Summary,
|
||||
bool Verified
|
||||
);
|
||||
|
||||
public record CompleteUploadRequest(
|
||||
Guid PersonId,
|
||||
Guid? EmployerId,
|
||||
string Title,
|
||||
DateOnly From,
|
||||
DateOnly To,
|
||||
string? Summary,
|
||||
string BlobPath,
|
||||
string? BlobHash,
|
||||
string? ContentBase64,
|
||||
string? ContentType
|
||||
);
|
||||
@@ -0,0 +1,14 @@
|
||||
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
|
||||
);
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
namespace MinAttest.Contracts.Attests;
|
||||
|
||||
public record PersonAttestUploadRequest(
|
||||
string Title,
|
||||
DateOnly From,
|
||||
DateOnly To,
|
||||
string? Summary,
|
||||
string BlobPath,
|
||||
string? BlobHash,
|
||||
string? ContentBase64,
|
||||
string? ContentType
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user