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