This commit is contained in:
2023-01-08 01:00:48 +00:00
parent 248d82b42e
commit f198d554f6
4 changed files with 391 additions and 5 deletions

View File

@@ -28,9 +28,21 @@ namespace Sockeye.Models
public string FetchEmail { get; set; }//v7 uses
public DateTime? FetchedOn { get; set; }
public string DbId { get; set; }//v8 uses
public DateTime? LicenseExpire { get; set; }
public DateTime MaintenanceExpire { get; set; }
//v8 dto props
[NotMapped]
public int CustomerUsers { get; set; }//v8
[NotMapped]
public int MaxDataGB { get; set; }//v8
[NotMapped]
public bool TrialMode { get; set; }//v8
//shared dto props
[NotMapped]
public int Users { get; set; }//v7 scheduled users, v8 internal users
//V7 props for dto
//not stored in db, hydrated if v7 license and
//used to do the generation from selections at client
@@ -78,7 +90,7 @@ namespace Sockeye.Models
public bool ImportExportCSVDuplicate { get; set; }
[NotMapped]
public DateTime? ImportExportCSVDuplicateExpires { get; set; }
public string Wiki { get; set; }
public List<string> Tags { get; set; }