LoginOTP.cs 352 B

12345678910111213141516
  1. using MTWorkHR.Core.Entities.Base;
  2. using System;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace MTWorkHR.Core.Entities
  5. {
  6. public partial class LoginOTP : Entity
  7. {
  8. public string OTP { get; set; }
  9. public string UserId { get; set; }
  10. public DateTime CreateDate { get; set; }
  11. public DateTime ExpireDate { get; set; }
  12. }
  13. }