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

27 lines
585 B
C#

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; }
public string Adress { get; set; }
public Student(string fIO, string group, string email, string adress)
{
FIO = fIO;
Group = group;
Email = email;
Adress = adress;
}
public Student() { }
}
}