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.

13 lines
230 B

using System.Collections.Generic;
namespace Win_in.Sfs.Scp.WebApi.Asns;
public class HL_T:HL
{
public HL_T() : base(LevelType.T)
{
}
public REF REF_LS { get; set; }
public List<HL_I> HL_Is { get; set; }
}