-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGlobalUsings.cs
More file actions
27 lines (27 loc) · 1.18 KB
/
GlobalUsings.cs
File metadata and controls
27 lines (27 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
global using BackgroundEmailSenderSample.Models.Options;
global using BackgroundEmailSenderSample.Models.Services.Infrastructure;
global using BackgroundEmailSenderSample.HostedServices;
global using Microsoft.AspNetCore.Builder;
global using Microsoft.AspNetCore.Hosting;
global using Microsoft.AspNetCore.Identity.UI.Services;
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Hosting;
global using System.Threading.Tasks;
global using BackgroundEmailSenderSample.Models.InputModels;
global using Microsoft.AspNetCore.Mvc;
global using System;
global using System.Threading;
global using System.Threading.Tasks.Dataflow;
global using System.Data;
global using Microsoft.Extensions.Logging;
global using Microsoft.Extensions.Options;
global using MimeKit;
global using MailKit.Net.Smtp;
global using SequentialGuid;
global using BackgroundEmailSenderSample.Models.Enums;
global using System.ComponentModel.DataAnnotations;
global using MailKit.Security;
global using BackgroundEmailSenderSample.Models.Exceptions.Infrastructure;
global using BackgroundEmailSenderSample.Models.ValueTypes;
global using Microsoft.Data.Sqlite;