Files
moadiran/Back/Data/Models/ValidationCode.cs

17 lines
382 B
C#
Raw Normal View History

2024-03-30 15:10:36 +03:30
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Back.Data.Models
{
public class VerificationCode
{
2024-04-14 22:19:39 +03:30
2024-03-30 15:10:36 +03:30
public int ID { get; set; }
2024-04-14 22:19:39 +03:30
public int Code { get; set; }
2024-03-30 15:10:36 +03:30
public string prm { get; set; }
public string val { get; set; }
public string Type { get; set; }
}
}