Demo/Data/RemoteData/RemoteDataBase/DAO/Group.cs

15 lines
334 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2024-10-24 11:13:46 +00:00
namespace Posechaemost.Data.RemoteData.RemoteDataBase.DAO
{
2024-10-24 11:13:46 +00:00
public class GroupDao
{
2024-11-06 04:10:09 +00:00
public int Id {get; set;}
public required string Name {get; set;}
2024-10-24 11:13:46 +00:00
2024-11-11 20:02:21 +00:00
public IEnumerable<UserDao> User {get; set;}
}
}