demp_with_asp/data/RemoteData/DAO/Group.cs

17 lines
334 B
C#
Raw Normal View History

2024-11-05 21:46:20 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.RemoteData.DAO
{
public class GroupDao
{
public int Id { get; set; }
public string Name { get; set; }
public virtual IEnumerable<UserDao> Users { get; set; }
}
}