presence/data/RemoteData/DAO/User.cs

19 lines
332 B
C#
Raw Normal View History

2024-11-08 08:08:54 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.RemoteData.DAO
{
public class UserDao
{
public string FIO { get; set; }
public Guid Guid { get; set; }
public virtual GroupDao Group { get; set; }
}
}