mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-15 05:36:04 +00:00
26 lines
742 B
C#
26 lines
742 B
C#
namespace RedumpLib.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Attribute specifc to Language values
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Some languages have multiple proper names. Should all be supported?
|
|
/// </remarks>
|
|
public class LanguageAttribute : HumanReadableAttribute
|
|
{
|
|
/// <summary>
|
|
/// ISO 639-1 Code
|
|
/// </summary>
|
|
public string TwoLetterCode { get; set; } = null;
|
|
|
|
/// <summary>
|
|
/// ISO 639-2 Code (Standard or Bibliographic)
|
|
/// </summary>
|
|
public string ThreeLetterCode { get; set; } = null;
|
|
|
|
/// <summary>
|
|
/// ISO 639-2 Code (Terminology)
|
|
/// </summary>
|
|
public string ThreeLetterCodeAlt { get; set; } = null;
|
|
}
|
|
} |