PIbd-21_Medvedkov_Coursach/ComputerShopContracts/ViewModels/ComponentBatchReportViewModel.cs
2024-05-02 00:46:54 +04:00

9 lines
238 B
C#

namespace ComputerShopContracts.ViewModels
{
public class ComponentBatchReportViewModel
{
public string ComponentName { get; set; } = string.Empty;
public List<DateTime> DateBatch { get; set; } = new();
}
}