Нет описания

12345678910111213
  1. using Microsoft.AspNetCore.Http;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Logger.Services.Interfaces
  7. {
  8. public interface ILoggerServices
  9. {
  10. Task Invoke(HttpContext context);
  11. }
  12. }

Powered by TurnKey Linux.