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