OtpVerification.cs 520 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Database.Database;
  4. public partial class OtpVerification
  5. {
  6. public int Id { get; set; }
  7. public decimal? CustomerId { get; set; }
  8. public string UserEmail { get; set; } = null!;
  9. public string OtpCode { get; set; } = null!;
  10. public byte? OtpType { get; set; }
  11. public DateTime ExpiredAt { get; set; }
  12. public bool? IsUsed { get; set; }
  13. public byte? AttemptCount { get; set; }
  14. public DateTime? CreatedDate { get; set; }
  15. }