Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceStationContracts/ViewModels/ReportClientsInWorksViewModel.cs
2024-08-15 15:59:47 +04:00

16 lines
495 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationContracts.ViewModels {
public class ReportClientsInWorksViewModel {
public int WorkId { get; set; }
public string Date { get; set; } = string.Empty;
public double Price { get; set; }
public int TotalCount { get; set; }
public List<(int client_id, string client_fio)> _Clients { get; set; } = new();
}
}