using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Presense.Desktop.Models { public class StudentPresenter { public int Id { get; set; } public string FirstName { get; set; } = string.Empty; public string LastName { get; set; } = string.Empty; public string Patronymic { get; set; } = string.Empty; // Ссылка на группу, к которой относится студент public GroupPresenter? Group { get; set; } } }