using Newtonsoft.Json;
namespace SabreTools.Data.Models.Xbox
{
///
/// Package Title for each locale, for catalog.js
///
public class Title
{
///
/// "locale":
/// String representing locale that this title is in
/// Known values: "default", "en", "de", "fr", "ar", "zh-hans",
/// "zh-hant", "zh-TW", "zh-HK", "zh-CN", "zh-SG", etc
///
[JsonProperty("locale", NullValueHandling = NullValueHandling.Ignore)]
public string? Locale { get; set; }
///
/// "title":
/// Package title
///
[JsonProperty("title", NullValueHandling = NullValueHandling.Ignore)]
public string? Name { get; set; }
}
}