Большое обновление

This commit is contained in:
2025-01-02 14:42:15 +03:00
parent 4428052d78
commit 098eeb468e
14 changed files with 633 additions and 118 deletions

View 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
}