using Complex.Domain.Commons; namespace Complex.Domain.Entities { public class Poster:BaseEntity { public string RegisterMobileNumber { set; get; } public bool IsActive { set; get; } = false; public string ImagePath { set; get; } } }