semesterWork/Presence.Desktop/Models/StudentPresenter.cs

20 lines
573 B
C#
Raw Permalink Normal View History

2024-12-12 18:16:01 +00:00
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; }
}
}