-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_Imports.cs
21 lines (21 loc) · 908 Bytes
/
_Imports.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
global using AutoMapper;
global using IdentificationServer.Core.CustomEntities;
global using IdentificationServer.Core.DTOs;
global using IdentificationServer.Core.Entities;
global using IdentificationServer.Core.Interfaces;
global using IdentificationServer.Core.QueryFilters;
global using IdentificationServer.Infraestructure.Interfaces;
global using IdentificationServer.WebApi.Responses;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Mvc;
global using Newtonsoft.Json;
global using System.Collections.Generic;
global using System.Net;
global using System.Threading.Tasks;
global using Microsoft.IdentityModel.Tokens;
global using System;
global using System.IdentityModel.Tokens.Jwt;
global using System.Security.Claims;
global using System.Text;
global using IdentificationServer.Core.Interfaces.InterfaceServices;
global using Microsoft.Extensions.Configuration;