Fix a spelling mistake

This commit is contained in:
Bond_009
2019-01-25 22:27:33 +01:00
parent e0315b5695
commit eaa6cb0ddc
5 changed files with 63 additions and 60 deletions

View File

@@ -49,7 +49,7 @@ namespace MediaBrowser.Model.Globalization
/// Gets the localization options.
/// </summary>
/// <returns>IEnumerable{LocalizatonOption}.</returns>
LocalizatonOption[] GetLocalizationOptions();
LocalizationOption[] GetLocalizationOptions();
string RemoveDiacritics(string text);

View File

@@ -0,0 +1,14 @@
namespace MediaBrowser.Model.Globalization
{
public class LocalizationOption
{
public LocalizationOption(string name, string value)
{
Name = name;
Value = value;
}
public string Name { get; set; }
public string Value { get; set; }
}
}

View File

@@ -1,8 +0,0 @@
namespace MediaBrowser.Model.Globalization
{
public class LocalizatonOption
{
public string Name { get; set; }
public string Value { get; set; }
}
}