添加项目文件。

This commit is contained in:
DK
2022-03-28 15:27:40 +08:00
parent b620fcb0cf
commit dc78fd1a09
898 changed files with 173053 additions and 0 deletions
@@ -0,0 +1,24 @@
using IRaCIS.Core.Domain.Share;
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("VerificationCode")]
public class VerificationCode:Entity
{
//public Guid Id { get; set; }
public Guid UserId { get; set; } = Guid.Empty;
public string Code { get; set; }
public VerifyType CodeType { get; set; }
public bool HasSend { get; set; }
public string EmailOrPhone { get; set; }
public DateTime ExpirationTime { get; set; }
}
}