using MTWorkHR.Core.Entities.Base; using System; using System.ComponentModel.DataAnnotations.Schema; namespace MTWorkHR.Core.Entities { public partial class LoginOTP : Entity { public string OTP { get; set; } public string UserId { get; set; } public DateTime CreateDate { get; set; } public DateTime ExpireDate { get; set; } } }