28 lines
625 B
C#
28 lines
625 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WinFormsLibrary.SupportClasses
|
|||
|
{
|
|||
|
public class Student
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string Group { get; set; }
|
|||
|
public string Faculty { get; set; }
|
|||
|
public int Course { get; set; }
|
|||
|
|
|||
|
public Student(string name, string group, string faculty, int course)
|
|||
|
{
|
|||
|
Name = name;
|
|||
|
Group = group;
|
|||
|
Faculty = faculty;
|
|||
|
Course = course;
|
|||
|
}
|
|||
|
public Student()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|