22 lines
432 B
C#
22 lines
432 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Presence.Desktop.Models
|
|||
|
{
|
|||
|
public class StudentPresenter
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string LastName { get; set; }
|
|||
|
|
|||
|
public string FirstName { get; set; }
|
|||
|
|
|||
|
public string Patronymic { get; set; }
|
|||
|
|
|||
|
public GroupPresenter Group { get; set; }
|
|||
|
}
|
|||
|
}
|