This commit is contained in:
2023-01-04 00:16:26 +00:00
parent 7c815fbb66
commit e774cce540

View File

@@ -14,10 +14,15 @@ namespace Sockeye.Models
{ {
public long Id { get; set; } public long Id { get; set; }
public uint Concurrency { get; set; } public uint Concurrency { get; set; }
[Required]
public string DbId { get; set; } public string DbId { get; set; }
[Required]
public string CompanyName { get; set; } public string CompanyName { get; set; }
[Required]
public string ContactName { get; set; } public string ContactName { get; set; }
[Required]
public string Email { get; set; } public string Email { get; set; }
[Required]
public string EmailConfirmCode { get; set; } public string EmailConfirmCode { get; set; }
public bool EmailValidated { get; set; } = false; public bool EmailValidated { get; set; } = false;
public DateTime Requested { get; set; } public DateTime Requested { get; set; }
@@ -27,8 +32,6 @@ namespace Sockeye.Models
public string Key { get; set; } public string Key { get; set; }
public DateTime? FetchedOn { get; set; } public DateTime? FetchedOn { get; set; }
public bool Perpetual { get; set; } = false; public bool Perpetual { get; set; } = false;
public List<string> Tags { get; set; } public List<string> Tags { get; set; }
//workaround for notification //workaround for notification