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

28 lines
764 B

4 months ago
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<AdvancedAnnotationInfo>(json);
}
}
}