using Complex.Domain.Commons; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Complex.Domain.Entities { [Auditable] public class ComplexUnitEvent : BaseEntity { /// /// اگر برای واحد بود /// public Guid? UnitId { set; get; } /// /// اگر برای مجتمع بود /// public int? ComplexId { set; get; } [MaxLength(10)] public string EventDate { set; get; } public string RegisterMobileNumber { set; get; } public string Body { set; get; } public string? Description { set; get; } } }