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