биндинги исправлены (вроде как)
This commit is contained in:
parent
c2f1286765
commit
4f5fec22bf
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user