6332ed9732
Added config and API Added Thread and signal
26 lines
632 B
C#
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; }
|
|
}
|
|
}
|