Sic04/FrameworkLocal/UIClient/Caliburn.Micro/Core/PlatformProvider.cs

17 lines
514 B
C#

namespace Caliburn.Micro.Core {
/// <summary>
/// Access the current <see cref="IPlatformProvider"/>.
/// </summary>
public static class PlatformProvider {
private static IPlatformProvider current = new DefaultPlatformProvider();
/// <summary>
/// Gets or sets the current <see cref="IPlatformProvider"/>.
/// </summary>
public static IPlatformProvider Current {
get { return current; }
set { current = value; }
}
}
}