13 lines
256 B
C#
13 lines
256 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Security.Claims;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Net.Http.Headers;
|
|
|
|
namespace WebAPI.Controllers
|
|
{
|
|
public class BaseController : ControllerBase
|
|
{
|
|
}
|
|
} |