You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
22 lines
665 B
C#
22 lines
665 B
C#
using NzbDrone.Core.Languages;
|
|
|
|
namespace NzbDrone.Core.Parser
|
|
{
|
|
public class IsoLanguage
|
|
{
|
|
public string TwoLetterCode { get; set; }
|
|
public string ThreeLetterCode { get; set; }
|
|
public string CountryCode { get; set; }
|
|
public Language Language { get; set; }
|
|
public string CountyCodeLower => CountryCode?.ToLower();
|
|
|
|
public IsoLanguage(string twoLetterCode, string countryCode, string threeLetterCode, Language language)
|
|
{
|
|
TwoLetterCode = twoLetterCode;
|
|
ThreeLetterCode = threeLetterCode;
|
|
CountryCode = countryCode;
|
|
Language = language;
|
|
}
|
|
}
|
|
}
|