Generator Changes at 11/25/2025 1:59:23 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 02:03:51 +03:30
parent 87842f0b9b
commit 92a9a0e75d
77 changed files with 164 additions and 138 deletions
@@ -2,16 +2,16 @@ namespace CMSMicroservice.Domain.Entities;
//توکن Otp
public class OtpToken : BaseAuditableEntity
{
//موبایل مقصد
//موبایل مقصد
public string Mobile { get; set; }
//مقصود
//مقصود
public string Purpose { get; set; }
//کد هش شده
//کد هش شده
public string CodeHash { get; set; }
//زمان انقضا
//زمان انقضا
public DateTime ExpiresAt { get; set; }
//شمارش تلاش‌ها
//شمارش تلاش‌ها
public int Attempts { get; set; }
//موفق بود؟
//موفق بود؟
public bool IsUsed { get; set; }
}
}