Perepis/data/RemoteData/DAO/Group.cs

18 lines
408 B
C#
Raw Normal View History

2024-11-08 08:08:54 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.RemoteData.DAO
{
public class GroupDao
{
2024-11-08 08:29:02 +00:00
internal static List<GroupDao> Name = new List<GroupDao>();
2024-11-08 08:08:54 +00:00
2024-11-08 08:29:02 +00:00
public int Id { get; set; }
public required string GroupName { get; set; }
public IEnumerable<UserDao> Users { get; set; }
2024-11-08 08:08:54 +00:00
}
}