PIbd-21_Medvedkov_Coursach/ComputerShopContracts/ViewModels/ComponentBatchReportViewModel.cs

9 lines
238 B
C#
Raw Normal View History

2024-05-02 00:46:54 +04:00
namespace ComputerShopContracts.ViewModels
{
public class ComponentBatchReportViewModel
{
public string ComponentName { get; set; } = string.Empty;
public List<DateTime> DateBatch { get; set; } = new();
}
}