29 lines
664 B
C#
29 lines
664 B
C#
using Hushian.Domain.Abstracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hushian.Domain.Entites
|
|
{
|
|
public class User:BaseEntity
|
|
{
|
|
#region Key
|
|
public int ID { get; set; }
|
|
#endregion
|
|
|
|
#region Fild
|
|
public DateTime Cdatetime
|
|
{ get; set; } = DateTime.Now;
|
|
public string? FullName { get; set; }
|
|
public string Mobile { get; set; }
|
|
#endregion
|
|
|
|
#region Navigation
|
|
public ICollection<Conversation> Conversations { get; set; }
|
|
= new List<Conversation>();
|
|
#endregion
|
|
}
|
|
}
|