using Complex.Domain.Commons; namespace Complex.Domain.Entities { public class Chat:BaseEntity { public Guid ComplexId { set; get; } public string PersonMobileNumber { set; get; } public string Body { set; get; } public byte ChatTypeId { set; get; } } }