presence/Presence.Desktop/Models/GroupPresenter.cs

16 lines
336 B
C#
Raw Normal View History

2024-12-10 05:26:38 +00:00
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; }
2024-12-12 07:20:21 +00:00
public List<StudentPresenter>? students = null;
2024-12-10 05:26:38 +00:00
}
}