Metadata.cs 447 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using Newtonsoft.Json;
  3. namespace AssetBank.Editor.SchemaConverter.Data.Output
  4. {
  5. /// <summary>
  6. /// Contains metadata about the conversion process.
  7. /// </summary>
  8. public class Metadata
  9. {
  10. [JsonProperty(Order = 1)]
  11. public string schema_version = "1.0";
  12. [JsonProperty(NullValueHandling = NullValueHandling.Ignore, Order = 3)]
  13. public List<string> warnings;
  14. }
  15. }