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.
24 lines
757 B
24 lines
757 B
using System; |
|
|
|
namespace Kingo.Mobile.Shape2KOTool.XSDClass |
|
{ |
|
// Token: 0x0200006C RID: 108 |
|
public class CIMSymbolReference : Symbol |
|
{ |
|
// Token: 0x17000162 RID: 354 |
|
// (get) Token: 0x06000426 RID: 1062 RVA: 0x00018534 File Offset: 0x00016734 |
|
// (set) Token: 0x06000427 RID: 1063 RVA: 0x0001854B File Offset: 0x0001674B |
|
public CIMSymbol Symbol { get; set; } |
|
|
|
// Token: 0x17000163 RID: 355 |
|
// (get) Token: 0x06000428 RID: 1064 RVA: 0x00018554 File Offset: 0x00016754 |
|
// (set) Token: 0x06000429 RID: 1065 RVA: 0x0001856B File Offset: 0x0001676B |
|
public string SymbolName { get; set; } |
|
|
|
// Token: 0x0600042A RID: 1066 RVA: 0x00018574 File Offset: 0x00016774 |
|
public CIMSymbolReference() |
|
{ |
|
base.Type = "CIMSymbolReference"; |
|
} |
|
} |
|
}
|
|
|