PIbd-32_Rogashova_E.A._COP_1/COPWinForms/Student.cs

27 lines
585 B
C#
Raw Normal View History

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-14 00:20:36 +04:00
public Student(string fIO, string group, string email, string adress)
{
FIO = fIO;
Group = group;
Email = email;
2023-10-14 00:20:36 +04:00
Adress = adress;
}
public Student() { }
}
}