15 lines
343 B
C#
15 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Posechaemost.Data.RemoteData.RemoteDataBase.DAO
|
|
{
|
|
public class GroupDao
|
|
{
|
|
public required int Id {get; set;}
|
|
public required string Name {get; set;}
|
|
|
|
public IEnumerable<UserDao> Users {get; set;}
|
|
}
|
|
} |