биндинги исправлены (вроде как)

This commit is contained in:
Дмитрий Блохин 2024-04-03 14:32:23 +04:00
parent c2f1286765
commit 4f5fec22bf
2 changed files with 3 additions and 0 deletions

View File

@ -10,7 +10,9 @@ namespace Contracts.BindingModels
public class MachineBindingModel : IMachineModel public class MachineBindingModel : IMachineModel
{ {
public int Id { get; set; } public int Id { get; set; }
public int UserId { get; set; }
public string Title { get; set; } public string Title { get; set; }
public string Country { get; set; } public string Country { get; set; }
public Dictionary<int, (IWorkerModel, int)> MachineWorker { get; set; } = new();
} }
} }

View File

@ -13,5 +13,6 @@ namespace Contracts.BindingModels
public string Title { get; set; } public string Title { get; set; }
public string Address { get; set; } public string Address { get; set; }
public string Director { get; set; } public string Director { get; set; }
public Dictionary<int, (IWorkerModel, int)> WorkshopWorker { get; set; } = new();
} }
} }