Allow to add and remove screens from machine details in admin view.

This commit is contained in:
2020-05-29 18:36:05 +01:00
parent 092121c6c2
commit 45d9bac9b2
14 changed files with 320 additions and 452 deletions

View File

@@ -0,0 +1,9 @@
namespace Marechai.ViewModels
{
public class ScreenByMachineViewModel : BaseViewModel<long>
{
public int MachineId { get; set; }
public ScreenViewModel Screen { get; set; }
public int ScreenId { get; set; }
}
}