mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
38 lines
523 B
C#
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;
|
|
}
|
|
|
|
|
|
}
|
|
}
|