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.
31 lines
895 B
31 lines
895 B
using System; |
|
|
|
namespace Kingo.Mobile.Shape2KOTool.XSDClass |
|
{ |
|
// Token: 0x0200006B RID: 107 |
|
public class AdvancedDrawingInfo |
|
{ |
|
// Token: 0x17000161 RID: 353 |
|
// (get) Token: 0x06000421 RID: 1057 RVA: 0x000184CC File Offset: 0x000166CC |
|
// (set) Token: 0x06000422 RID: 1058 RVA: 0x000184E3 File Offset: 0x000166E3 |
|
public DrawingInfo DrawingInfo { get; set; } |
|
|
|
// Token: 0x06000423 RID: 1059 RVA: 0x000184EC File Offset: 0x000166EC |
|
public AdvancedDrawingInfo() |
|
{ |
|
this.DrawingInfo = new DrawingInfo(); |
|
} |
|
|
|
// Token: 0x06000424 RID: 1060 RVA: 0x00018504 File Offset: 0x00016704 |
|
public string ToJson() |
|
{ |
|
return CommonMethod.SerializerToJson(this); |
|
} |
|
|
|
// Token: 0x06000425 RID: 1061 RVA: 0x0001851C File Offset: 0x0001671C |
|
public static AdvancedDrawingInfo FromJson(string json) |
|
{ |
|
return CommonMethod.DeSerializerFromJson<AdvancedDrawingInfo>(json); |
|
} |
|
} |
|
}
|
|
|