tangxu
2024-04-30 f7d7246b130ab1a6b204f7a4fb9c5ca8c8ea036b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.Collections.Generic;
 
namespace IStation.Model
{
    /// <summary>
    /// 信号记录包
    /// </summary>    
    public class SignalRecordPacket
    {
 
        /// <summary>
        /// 信号标识
        /// </summary>    
        public long SignalID { get; set; }
 
        /// <summary>
        /// 信号记录集合
        /// </summary>    
        public List<SignalRecord> RecordList { get; set; }
 
    }
}