Refactoring
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
namespace Oqtane.Infrastructure
|
||||
{
|
||||
public class LocalizationOptions
|
||||
{
|
||||
public string DefaultCulture { get; set; }
|
||||
|
||||
public string[] SupportedCultures { get; set; }
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Shared;
|
||||
|
||||
namespace Oqtane.Infrastructure.Localization
|
||||
{
|
||||
public static class LocalizationSettings
|
||||
{
|
||||
static LocalizationSettings()
|
||||
{
|
||||
DefaultCulture = Constants.DefaultCulture;
|
||||
SupportedCultures = new List<string> { DefaultCulture };
|
||||
}
|
||||
|
||||
public static string DefaultCulture { get; set; }
|
||||
|
||||
public static List<string> SupportedCultures { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user