mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
9 lines
274 B
C#
9 lines
274 B
C#
|
|
namespace Marechai.ViewModels
|
||
|
|
{
|
||
|
|
public class ScreenByMachineViewModel : BaseViewModel<long>
|
||
|
|
{
|
||
|
|
public int MachineId { get; set; }
|
||
|
|
public ScreenViewModel Screen { get; set; }
|
||
|
|
public int ScreenId { get; set; }
|
||
|
|
}
|
||
|
|
}
|