2015-04-17 14:10:12 +08:00

14 lines
350 B
C#

using CodecUTApp.Resources;
namespace CodecUTApp
{
/// <summary>
/// Provides access to string resources.
/// </summary>
public class LocalizedStrings
{
private static AppResources _localizedResources = new AppResources();
public AppResources LocalizedResources { get { return _localizedResources; } }
}
}