1234567891011121314151617 |
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace AssetBank.Editor.SchemaConverter.Data.Output
- {
- /// <summary>
- /// Contains metadata about the conversion process.
- /// </summary>
- public class Metadata
- {
- [JsonProperty(Order = 1)]
- public string schema_version = "1.0";
- [JsonProperty(NullValueHandling = NullValueHandling.Ignore, Order = 3)]
- public List<string> warnings;
- }
- }
|