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