Большое обновление
This commit is contained in:
38
src/Otchinslator/UserData.cs
Normal file
38
src/Otchinslator/UserData.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Otchinslator;
|
||||
|
||||
public class UserData
|
||||
{
|
||||
public UserData(
|
||||
string reason,
|
||||
string email,
|
||||
string phone,
|
||||
string fio,
|
||||
int kurs,
|
||||
bool isFreeEducation,
|
||||
bool isOchno,
|
||||
SpecialityType speciality)
|
||||
{
|
||||
}
|
||||
|
||||
public UserData()
|
||||
{
|
||||
}
|
||||
|
||||
public string reason { get; set; }
|
||||
public string email { get; set; }
|
||||
public string phone { get; set; }
|
||||
public string fio { get; set; }
|
||||
public int kurs { get; set; }
|
||||
public bool isFreeEducation { get; set; }
|
||||
public bool isOchno { get; set; }
|
||||
public SpecialityType speciality { get; set; }
|
||||
}
|
||||
|
||||
public enum SpecialityType
|
||||
{
|
||||
Bakalavriat,
|
||||
Magistatura,
|
||||
Specialitet
|
||||
}
|
||||
Reference in New Issue
Block a user