init commit

This commit is contained in:
zhaowei.huang
2026-06-14 11:19:15 +08:00
parent e79a3815a5
commit c8e540d272
174 changed files with 60830 additions and 39 deletions
@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StandardScene.ExtendDevice.ButtonBox
{
/// <summary>
/// 按钮盒模型
/// </summary>
public class ButtonBoxModel
{
public string Ip { get; set; } = string.Empty;
public int Port { get; set; } = 0;
public int Index { get; set; } = 0;
public string Type { get; set; } = string.Empty;
public List<ButtonModel> Buttons { get; set; } = new List<ButtonModel>();
}
/// <summary>
/// 按钮模型
/// </summary>
public class ButtonModel
{
public int Index { get; set; } = 0;
public string TriggerMission { get; set; } = string.Empty;
public string TriggerMethod { get; set; } = string.Empty;
public string TriggerMethodParams { get; set; } = string.Empty;
public string TriggerState { get; set; } = string.Empty;
public ushort TriggerDelay { get; set; } = 0;
}
}