first commit
This commit is contained in:
13
Complex.Domain/Entities/SmsCode.cs
Normal file
13
Complex.Domain/Entities/SmsCode.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Complex.Domain.Commons;
|
||||
|
||||
namespace Complex.Domain.Entities
|
||||
{
|
||||
public class SmsCode:BaseEntity
|
||||
{
|
||||
public string PhoneNumber { get; set; }
|
||||
public string Code { get; set; }
|
||||
public bool Used { get; set; }
|
||||
public int RequestCount { get; set; }
|
||||
public DateTime InsertDate { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user