Audio_Reducer/Audio_Reducer/LocalizedStrings.cs

14 lines
356 B
C#
Raw Normal View History

2018-12-19 20:51:18 +01:00
using Audio_Reducer.Resources;
namespace Audio_Reducer
{
/// <summary>
/// Provides access to string resources.
/// </summary>
public class LocalizedStrings
{
private static AppResources _localizedResources = new AppResources();
public AppResources LocalizedResources { get { return _localizedResources; } }
}
}