using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AliFsmnVadSharp.Model { public class SegmentEntity { private List _segment=new List(); private List _waveform=new List(); public List Segment { get => _segment; set => _segment = value; } public List Waveform { get => _waveform; set => _waveform = value; } //public SegmentEntity() //{ // int[] t=new int[0]; // _segment.Add(t); //} } }