9 lines
300 B
C#
Raw Normal View History

2023-03-20 02:50:09 +04:00
namespace SoftwareInstallationContracts.ViewModels
{
public class ReportPackageComponentViewModel
{
2023-03-20 20:34:36 +04:00
public string PackageName { get; set; } = string.Empty;
2023-03-20 02:50:09 +04:00
public int TotalCount { get; set; }
2023-03-20 20:34:36 +04:00
public List<Tuple<string, int>> Components { get; set; } = new();
2023-03-20 02:50:09 +04:00
}
}