Files
sockeye/server/ControllerHelpers/UserTypeFromContext.cs
2022-12-16 06:01:23 +00:00

17 lines
348 B
C#

using System.Collections.Generic;
using Sockeye.Biz;
namespace Sockeye.Api.ControllerHelpers
{
internal static class UserTypeFromContext
{
internal static UserType Type(IDictionary<object, object> HttpContextItems)
{
return (UserType)HttpContextItems["AY_USER_TYPE"];
}
}
}//eons