123456789101112131415 |
- using System.Collections.Generic;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.SignalR.Infrastructure;
-
- namespace Luticate2.Utils.Controllers
- {
- public abstract class LuController : Controller
- {
- protected IConnectionManager ConnectionManager { get; set; }
-
- protected IDictionary<object, object> LuItems => (IDictionary<object, object>) HttpContext.Items["luticateItems"];
-
- // protected UsersDbo LuCurrentUser => (UsersDbo) LuItems["luticateItems"];
- }
- }
|