pr1/presence/data/RemoteData/RemoteDataBase/DAO/Group.cs

16 lines
356 B
C#
Raw Normal View History

2024-11-17 16:24:01 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-12-23 09:12:26 +00:00
namespace presence.data.RemoteData.RemoteDataBase.DAO
2024-11-17 16:24:01 +00:00
{
public class GroupDao
{
public int Id { get; set; }
2024-12-05 09:30:01 +00:00
public string Name { get; set; }
2024-12-23 09:12:26 +00:00
public virtual IEnumerable<UserDao> User { get; set; }
2024-11-17 16:24:01 +00:00
}
}