mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
40 lines
576 B
C#
40 lines
576 B
C#
using QRBee.Core.Security;
|
|
|
|
namespace QRBee.Core.Data
|
|
{
|
|
public record RegistrationRequest
|
|
{
|
|
public string Name
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Email
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string DateOfBirth
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public ReadableCertificateRequest CertificateRequest
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool RegisterAsMerchant
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
|
|
}
|
|
}
|