Files
cms_thermo_active/Step.Model/DTOModels/DTOSoftKeyModel.cs
T
Lucio Maranta 6332ed9732 First softkey implementation
Added config and API
Added Thread and signal
2018-03-06 17:58:02 +01:00

26 lines
632 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Step.Utils.Constants;
namespace Step.Model.DTOModels
{
public class DTOSoftKeyConfigModel
{
public int Id { get; set; }
public int Category { get; set; }
public SOFTKEY_TYPE Type { get; set; }
public Dictionary<int, string> SubKeys { get; set; }
}
public class DTOSoftKeyModel
{
public int Id { get; set; }
public int Category { get; set; }
public bool Active { get; set; }
public bool Value { get; set; }
}
}