2024-05-01 14:13:51 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportDefectsViewModel
|
|
|
|
|
{
|
|
|
|
|
public string SparePartName { get; set; } = string.Empty;
|
2024-05-28 22:40:54 +04:00
|
|
|
|
public double FullPrice { get; set; }
|
2024-05-01 14:13:51 +04:00
|
|
|
|
public List<(string, double)> DefectsInfo { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|