using Blue; using System.Collections.Generic; public struct GetPointPosSuccessCommand : ICommand { private List pointPos; public GetPointPosSuccessCommand(List pointPos) { this.pointPos = pointPos; } public void OnExcute() { this.TriggerEvent(new GetPointPosSuccessEvent() { pointJsonInfos = pointPos }); } }