Initial import
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace MinAttest.Contracts.Persons;
|
||||
|
||||
using MinAttest.Contracts.Attests;
|
||||
|
||||
public record PersonUpsertRequest(
|
||||
string NationalIdHash,
|
||||
string? Email,
|
||||
string? Phone
|
||||
);
|
||||
|
||||
public record PersonResponse(
|
||||
Guid Id,
|
||||
string NationalIdHash,
|
||||
string? Email,
|
||||
string? Phone,
|
||||
IReadOnlyList<AttestSummary> Attests
|
||||
);
|
||||
Reference in New Issue
Block a user