@@ -1,11 +1,11 @@
|
||||
using Api.Services.Contracts.Models;
|
||||
using Api.Requests;
|
||||
using Api.Services.Contracts;
|
||||
using Api.Settings;
|
||||
using Microsoft.AspNetCore.Cors;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.RateLimiting;
|
||||
using Microsoft.Extensions.Options;
|
||||
using Api.Models.Settings;
|
||||
using Api.Models.Requests;
|
||||
|
||||
namespace Api.Controllers
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Api.Requests;
|
||||
using Api.Models.Requests;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.RateLimiting;
|
||||
using System.Net.Http.Headers;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using Api.Models.Settings;
|
||||
using Api.Services.Contracts;
|
||||
using Api.Settings;
|
||||
using Microsoft.AspNetCore.Cors;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.StaticFiles;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Api.Settings;
|
||||
using Api.Models.Settings;
|
||||
using Microsoft.AspNetCore.Cors;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Api.Requests
|
||||
namespace Api.Models.Requests
|
||||
{
|
||||
public sealed class ContactRequest
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Requests;
|
||||
namespace Api.Models.Requests;
|
||||
|
||||
public sealed class JobMatchRequest
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Api.Requests
|
||||
namespace Api.Models.Requests
|
||||
{
|
||||
public sealed class SubscribeRequest
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Settings
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class CaptchaSettings
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Settings
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class ContactSettings
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Settings
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class FileStorageSettings
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Settings
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class GoogleSettings
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Settings
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class KeyVaultSettings
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Settings
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public class SmtpSettings
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Api.Settings
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class SubscribeSettings
|
||||
{
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using Api.Models.Settings;
|
||||
using Api.Services;
|
||||
using Api.Services.Contracts;
|
||||
using Api.Settings;
|
||||
using Azure.Identity;
|
||||
using Microsoft.AspNetCore.HttpOverrides;
|
||||
using Serilog;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Api.Requests;
|
||||
using Api.Models.Requests;
|
||||
|
||||
namespace Api.Services.Contracts
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using Api.Services.Contracts.Models;
|
||||
using Api.Services.Contracts;
|
||||
using Api.Settings;
|
||||
using Microsoft.Extensions.Options;
|
||||
using Api.Models.Settings;
|
||||
|
||||
namespace Api.Services
|
||||
{
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
using Api.Services.Contracts;
|
||||
using Api.Requests;
|
||||
using Microsoft.Extensions.Options;
|
||||
using MailKit.Net.Smtp;
|
||||
using MailKit.Security;
|
||||
using MimeKit;
|
||||
using Api.Settings;
|
||||
using Api.Models.Settings;
|
||||
using Api.Models.Requests;
|
||||
|
||||
namespace Api.Services
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user