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.
21 lines
626 B
21 lines
626 B
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace Kingo.Framework.LayerStyleConvert.XSDClass |
|
{ |
|
// Token: 0x0200006E RID: 110 |
|
public class CIMPolygonSymbol : CIMSymbol |
|
{ |
|
// Token: 0x17000164 RID: 356 |
|
// (get) Token: 0x0600042C RID: 1068 RVA: 0x00018594 File Offset: 0x00016794 |
|
// (set) Token: 0x0600042D RID: 1069 RVA: 0x000185AB File Offset: 0x000167AB |
|
public List<SymbolLayer> SymbolLayers { get; set; } |
|
|
|
// Token: 0x0600042E RID: 1070 RVA: 0x000185B4 File Offset: 0x000167B4 |
|
public CIMPolygonSymbol() |
|
{ |
|
base.Type = "CIMPolygonSymbol"; |
|
this.SymbolLayers = new List<SymbolLayer>(); |
|
} |
|
} |
|
}
|
|
|