11 lines
322 B
C#
11 lines
322 B
C#
using System.Collections.Generic;
|
|
namespace AyaNova.Api.ControllerHelpers
|
|
{
|
|
internal static class ImportModeFromContext
|
|
{
|
|
internal static bool ImportMode(IDictionary<object, object> HttpContextItems)
|
|
{
|
|
return HttpContextItems["AY_IMPORT_MODE"] != null;
|
|
}
|
|
}
|
|
}//eons |