using System; using System.Collections.Generic; namespace Shared { [System.Serializable] public class CustomViewObj { public List ButtonList; } [System.Serializable] public class CustomButtonObj { public int X; public int Y; public int Width; public int Height; public int Text; public string BackgroungImage; /// /// 是否边框 /// public bool Border = false; /// /// 是否圆角 /// public bool Radius = false; /// /// 命令 /// public int Command; /// /// 发送的附加数据 /// public List SendBytes = new List (); } }