You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
457 B

using JetBrains.Annotations;
namespace Win_in.Sfs.Scp.WebApi.Asns;
/// <summary>
/// Hierarchical Level
/// 层级结构
/// </summary>
public abstract class HL
{
public HL(LevelType hl03)
{
HL03 = hl03.ToString();
}
public string HL01 { get; set; }
public string HL02 { get; set; }
public string HL03 { get; }
public string HL04 { get; set; }
public enum LevelType
{
S,
T,
I
}
}