2024-03-23 09:37:51 +04:00
|
|
|
|
namespace SewingDressesContracts.ViewModels
|
2024-03-21 23:30:07 +04:00
|
|
|
|
{
|
|
|
|
|
public class ReportDressComponentViewModel
|
|
|
|
|
{
|
2024-03-23 09:37:51 +04:00
|
|
|
|
public string DressName { get; set; } = string.Empty;
|
2024-03-21 23:30:07 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2024-03-23 09:37:51 +04:00
|
|
|
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
2024-03-21 23:30:07 +04:00
|
|
|
|
}
|
|
|
|
|
}
|