presence/Presence.Desktop/Models/GroupPresenter.cs
2024-12-12 10:20:21 +03:00

16 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Presence.Desktop.Models
{
public class GroupPresenter
{
public int Id { get; set; }
public string Name { get; set; }
public List<StudentPresenter>? students = null;
}
}