This commit is contained in:
2023-04-21 19:34:11 +00:00
parent a296bc9b4f
commit 8f2ab38ba2
3 changed files with 24 additions and 4 deletions

View File

@@ -15,8 +15,13 @@ namespace Sockeye.Models
[Required]
public string Name { get; set; }
public bool Active { get; set; }
public decimal InitialPrice { get; set; } = 0;
public decimal RenewPrice { get; set; } = 0;
[Required]
public ProductGroup PGroup {get;set;}
public ProductGroup PGroup { get; set; }
public long VendorId { get; set; }
public TimeSpan LicenseInterval { get; set; }
public TimeSpan MaintInterval { get; set; }