....
This commit is contained in:
15
Back/Data/Models/ValidationCode.cs
Normal file
15
Back/Data/Models/ValidationCode.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
|
||||
namespace Back.Data.Models
|
||||
{
|
||||
public class VerificationCode
|
||||
{
|
||||
[Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||||
public int ID { get; set; }
|
||||
public string prm { get; set; }
|
||||
public string val { get; set; }
|
||||
public string Type { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user