Иван Алексеев 1128ffdc1a сдано
2024-09-21 17:41:05 +04:00

16 lines
324 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FormLibrary.HelperClasses
{
public class Student
{
public string Group { get; set; }
public string FullName { get; set; }
public int Course { get; set; }
}
}