2024-03-22 01:29:50 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TravelCompanyContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportTravelComponentViewModel
|
|
|
|
|
{
|
2024-03-22 19:04:16 +04:00
|
|
|
|
public string TravelName { get; set; } = string.Empty;
|
2024-03-22 01:29:50 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2024-03-22 19:04:16 +04:00
|
|
|
|
public List<(string Component, int Count)> Components { get; set; } = new();
|
|
|
|
|
|
2024-03-22 01:29:50 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|