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