using System.Collections.ObjectModel; namespace SKMC.Api.Motion.Model { /// /// IO分组 /// public class MotionIOGroup { // DI / DO public string Type { get; set; } public int GrpNo { get; set; } // extension public string Station { get; set; } public ObservableCollection DeviceIOModels { get; set; } } }