Upload files to 'STOContracts/ViewModels'
This commit is contained in:
parent
9d88de1d32
commit
b816caef63
14
STOContracts/ViewModels/WorkViewModel.cs
Normal file
14
STOContracts/ViewModels/WorkViewModel.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using STODataModels;
|
||||
using System.ComponentModel;
|
||||
namespace STOContracts.ViewModels
|
||||
{
|
||||
public class WorkViewModel : IWorkModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
[DisplayName("Название работы")]
|
||||
public string Name { get; set; } = string.Empty;
|
||||
[DisplayName("время на работу")]
|
||||
public int Time_duration { get; set; }
|
||||
public Dictionary<int, (ICarPartModel, int)> CarParts { get; set; } = new();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user