slarny4/Demo1/Data/RemoteData/RemoteDataBase/DAO/Group.cs

10 lines
274 B
C#
Raw Normal View History

2024-10-28 12:42:04 +00:00
// Group.cs в RemoteData/RemoteDataBase/DAO
namespace Demo.Data.RemoteData.RemoteDataBase.DAO
{
2024-11-14 11:24:07 +00:00
public class GroupDAO
2024-10-28 12:42:04 +00:00
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
2024-11-14 11:24:07 +00:00
public UserDAO User { get; set; }
2024-10-28 12:42:04 +00:00
}
}