2023-10-09 16:38:20 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace COPWinForms
|
|
|
|
|
{
|
|
|
|
|
public class Student
|
|
|
|
|
{
|
|
|
|
|
public string FIO { get; set; }
|
|
|
|
|
public string Group { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
2023-10-14 00:20:36 +04:00
|
|
|
|
public string Adress { get; set; }
|
2023-10-09 16:38:20 +04:00
|
|
|
|
|
2023-10-14 00:20:36 +04:00
|
|
|
|
public Student(string fIO, string group, string email, string adress)
|
2023-10-09 16:38:20 +04:00
|
|
|
|
{
|
|
|
|
|
FIO = fIO;
|
|
|
|
|
Group = group;
|
|
|
|
|
Email = email;
|
2023-10-14 00:20:36 +04:00
|
|
|
|
Adress = adress;
|
2023-10-09 16:38:20 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Student() { }
|
|
|
|
|
}
|
|
|
|
|
}
|