15 lines
360 B
C#
15 lines
360 B
C#
|
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;
|
|||
|
public List<(string, double)> DefectsInfo { get; set; } = new();
|
|||
|
}
|
|||
|
}
|