Upload files to 'STOContracts/BindingModels'

This commit is contained in:
Ivan_Starostin 2024-05-01 14:27:10 +04:00
parent dba140e772
commit 0d33d74751

View File

@ -0,0 +1,18 @@
using STODataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace STOContracts.BindingModels
{
public class WorkBindingModel: IWorkModel
{
public int Id { get; set; }
public string Name { get; set; }
public int Time_duration { get; set; }
public Dictionary<int, (ICarPartModel, int)> CarParts { get; set; } = new();
}
}