using Complex.Domain.Commons; namespace Complex.Domain.Entities { public class SmsCode:BaseEntity { public string PhoneNumber { get; set; } public string Code { get; set; } public bool Used { get; set; } public int RequestCount { get; set; } public DateTime InsertDate { get; set; } } }