PIbd-23-Lisov-N.A-SewingDre.../DressAtelierContracts/ViewModels/ReportDressMaterialViewModel.cs

16 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DressAtelierContracts.ViewModels
{
public class ReportDressMaterialViewModel
{
public string DressName { get; set; } = string.Empty;
public int TotalAmount { get; set; }
public List<(string Material, int count)> Materials { get; set; } = new List<(string Material, int count)>();
}
}