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

@@ -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; }
}
}