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

16 lines
353 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;
namespace Demo.Data.RemoteData.RemoteDataBase.DAO
{
public class GroupDao
{
public int Id { get; set; }
2024-12-05 09:30:01 +00:00
public string Name { get; set; }
2024-11-17 16:24:01 +00:00
public virtual IEnumerable<UserDao> Users { get; set; }
}
}