Preview:
using AutoDocs.Models.TicketFiles;
using AutoDocs.ViewModels;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Identity;
using System.Security.Claims;
using Microsoft.AspNetCore.SignalR;
using System;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Microsoft.IdentityModel.Tokens;

namespace AutoDocs.ConversationHub
{

  public class ChatHub : Hub
  {
    private readonly ITicketRepository _ticketRepo;

    public ChatHub(ITicketRepository ticketRepo)
    {
      _ticketRepo = ticketRepo;
    }

  }
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter