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