Compare commits

...

2 Commits

View File

@ -12,7 +12,7 @@ namespace AbstractSoftwareInstallationContracts.BindingModels
public int Id { get; set; }
public string PackageName { get; set; } = string.Empty;
public double Price { get; set; }
public Dictionary<int, (ISoftwareModel, int)> PackageSoftware{get;set;} = new();
public object PackageSoftwares { get; set; }
public Dictionary<int, (ISoftwareModel, int)> PackageSoftware { get; set; } = new();
}
}
}