conflict fix 2

This commit is contained in:
devil_1nc 2023-05-22 19:38:55 +04:00
parent e7dec86f9c
commit 87d0990c81

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();
}
}
}