namespace SabreTools.RedumpLib.Legacy.Attributes
{
///
/// Attribute specifc to Language values
///
///
/// Some languages have multiple proper names. Should all be supported?
///
public class LanguageCodeAttribute : HumanReadableAttribute
{
///
/// ISO 639-1 Code
///
public string? TwoLetterCode { get; set; }
///
/// ISO 639-2 Code (Standard or Bibliographic)
///
public string? ThreeLetterCode { get; set; }
///
/// ISO 639-2 Code (Terminology)
///
public string? ThreeLetterCodeAlt { get; set; }
}
}