12345678910111213 |
- using System.Collections.Generic;
- using Microsoft.AspNetCore.Http;
-
- namespace Luticate2.Utils.Controllers
- {
- public static class LuUtilsExtensions
- {
- public static IDictionary<object, object> GetLuItems(this HttpContext context)
- {
- return (IDictionary<object, object>) context.Items["luticateItems"];
- }
- }
- }
|