QRBee/QRBee.Core/Data/RegistrationRequest.cs
2022-02-01 17:18:13 +00:00

38 lines
528 B
C#

namespace QRBee.Core.Data
{
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;
}
}
}