年度变更建库软件5.0版本
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.

22 lines
609 B

4 months ago
using System;
using System.Collections.Generic;
namespace Kingo.Plugin.ShapeToKOApp.XSDClass
{
// Token: 0x02000074 RID: 116
public class CIMLineSymbol : CIMSymbol
{
// Token: 0x17000170 RID: 368
// (get) Token: 0x0600044A RID: 1098 RVA: 0x00018810 File Offset: 0x00016A10
// (set) Token: 0x0600044B RID: 1099 RVA: 0x00018827 File Offset: 0x00016A27
public List<SymbolLayer> SymbolLayers { get; set; }
// Token: 0x0600044C RID: 1100 RVA: 0x00018830 File Offset: 0x00016A30
public CIMLineSymbol()
{
base.Type = "CIMLineSymbol";
this.SymbolLayers = new List<SymbolLayer>();
}
}
}