19 lines
310 B
C#
19 lines
310 B
C#
|
|
namespace MediaBrowser.Common.Kernel
|
|
{
|
|
/// <summary>
|
|
/// Enum KernelContext
|
|
/// </summary>
|
|
public enum KernelContext
|
|
{
|
|
/// <summary>
|
|
/// The server
|
|
/// </summary>
|
|
Server,
|
|
/// <summary>
|
|
/// The UI
|
|
/// </summary>
|
|
Ui
|
|
}
|
|
}
|