Files
StandardSence/StandardScene.Signal/Model/HandshakePointModel.cs
T

21 lines
595 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.ComponentModel;
namespace StandardScene.Signal.Model
{
/// <summary>
/// 握手点配置。对应老地图点上的 <c>SignalStop</c>SignalType + SignalParams)。
/// 站点 fields 若已填写同名键,优先用站点字段。
/// </summary>
public class HandshakePointModel
{
[DisplayName("站点")]
public int Sit { get; set; }
[DisplayName("信号类型")]
public string SignalType { get; set; } = "JGControl";
[DisplayName("信号参数")]
public string SignalParams { get; set; } = "";
}
}