using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelVm.SysVm
{
public class SlotsVm
{
///
///
///
public int SlotColumn { get; set; }
///
///
///
public int SlotRow { get; set; }
///
///
///
public string SlotCode { get; set; }
///
///
///
public string SlotStatusCls { get; set; }
///
///
///
public string Make { get; set; }
}
public class BordModelVM
{
public int Col { get; set; }
public int Row { get; set; }
public List SlotsVm { get; set; } = new List();
}
}