This commit is contained in:
2020-07-02 17:29:32 +00:00
parent 2a4e493814
commit dc426d86a4
4 changed files with 7 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ namespace rockfishCore.Models
}
public long Id { get; set; }
public long CustomerId { get; set; }
public long SiteId { get; set; }
public long? SiteId { get; set; }
public long DtCreated { get; set; }
public string RegTo { get; set; }
public string Key { get; set; }
@@ -21,8 +21,8 @@ namespace rockfishCore.Models
public long? DtFetched { get; set; }
public bool Fetched { get; set; }
public string DbId { get; set; }
public long DtLicenseExpiration { get; set; }
public long DtMaintenanceExpiration { get; set; }
public long? DtLicenseExpiration { get; set; }
public long? DtMaintenanceExpiration { get; set; }
}
}