Files
activestep/Step.Model/ConfigModels/InputOperatorConfigModel.cs
2020-09-12 16:11:43 +02:00

17 lines
437 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class InputOperatorConfigModel
{
public int Id { get; set;}
public Dictionary<string, string> Messages { get; set; }
public Dictionary<byte, Dictionary<string, string>> Buttons { get; set; }
public string Type { get; set; }
}
}