mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
32 lines
427 B
C#
32 lines
427 B
C#
namespace QRBee.Core
|
|
{
|
|
internal class RegistrationData
|
|
{
|
|
public string Name
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Email
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string DateOfBirth
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string CertificateRequest
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
|
|
}
|
|
}
|