QRBee/QRBee.Core/Data/RegistrationRequest.cs
2021-12-27 16:22:41 +00:00

38 lines
523 B
C#

namespace QRBee.Core
{
public record RegistrationRequest
{
public string Name
{
get;
set;
}
public string Email
{
get;
set;
}
public string DateOfBirth
{
get;
set;
}
public string CertificateRequest
{
get;
set;
}
public bool RegisterAsMerchant
{
get;
set;
}
}
}