2024-04-30 23:27:38 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportWorksViewModel
|
|
|
|
|
{
|
|
|
|
|
public string CarNumber { get; set; } = string.Empty;
|
2024-05-01 01:14:12 +04:00
|
|
|
|
public List<(string, double)> WorksInfo { get; set; } = new();
|
2024-04-30 23:27:38 +04:00
|
|
|
|
}
|
|
|
|
|
}
|