| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace Database.Database;
- public partial class OtpVerification
- {
- public int Id { get; set; }
- public decimal? CustomerId { get; set; }
- public string UserEmail { get; set; } = null!;
- public string OtpCode { get; set; } = null!;
- public byte? OtpType { get; set; }
- public DateTime ExpiredAt { get; set; }
- public bool? IsUsed { get; set; }
- public byte? AttemptCount { get; set; }
- public DateTime? CreatedDate { get; set; }
- }
|