16 lines
495 B
C#
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();
|
|||
|
}
|
|||
|
}
|