16 lines
486 B
C#
16 lines
486 B
C#
// Global using directives
|
|
|
|
global using Application.Interfaces;
|
|
global using Application.Models.Api;
|
|
global using Application.Models.Game;
|
|
global using Application.Utils;
|
|
global using Domain.Common;
|
|
global using Domain.Entities;
|
|
global using Domain.Enums;
|
|
global using Domain.Models;
|
|
global using Domain.Models.Base;
|
|
global using Domain.Models.GameData;
|
|
global using MediatR;
|
|
global using Microsoft.EntityFrameworkCore;
|
|
global using Microsoft.Extensions.Logging;
|
|
global using Throw; |