using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.Framework.LayerStyleConvert.XSDClass { public class AdvancedAnnotationInfo { public AnnotationInfo AnnotationInfos { get; set; } public AdvancedAnnotationInfo() { this.AnnotationInfos = new AnnotationInfo(); } public string ToJson() { return CommonMethod.SerializerToJson(this); } // Token: 0x06000425 RID: 1061 RVA: 0x0001851C File Offset: 0x0001671C public static AdvancedAnnotationInfo FromJson(string json) { return CommonMethod.DeSerializerFromJson(json); } } }