You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
743 B
C#
28 lines
743 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompressorXN_Model.ViewModel.Response
|
|
{
|
|
public class AgreementVM
|
|
{
|
|
/// <summary>
|
|
/// 协议配置
|
|
/// </summary>
|
|
public T_Agreement_Config AgreementConfig { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送和接收报文规则
|
|
/// </summary>
|
|
public List<T_Agreement_Detail_Rule> AgreementDetailRuleList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 辅助位
|
|
/// </summary>
|
|
public List<T_Agreement_Help_Rule> AgreementHelpRuleList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附加报文
|
|
/// </summary>
|
|
public List<T_Agreement_Additional_Rule> AgreementAdditionalRuleList { get; set; }
|
|
}
|
|
}
|