diff --git a/ArchiSteamFarm/IPC/ArchiKestrel.cs b/ArchiSteamFarm/IPC/ArchiKestrel.cs index 9303ec9f9..23c19f2b3 100644 --- a/ArchiSteamFarm/IPC/ArchiKestrel.cs +++ b/ArchiSteamFarm/IPC/ArchiKestrel.cs @@ -36,7 +36,7 @@ using ArchiSteamFarm.Helpers.Json; using ArchiSteamFarm.IPC.Controllers.Api; using ArchiSteamFarm.IPC.Integration; using ArchiSteamFarm.IPC.OpenApi; -using ArchiSteamFarm.IPC.Swagger; +using ArchiSteamFarm.IPC.Swashbuckle; using ArchiSteamFarm.Localization; using ArchiSteamFarm.NLog; using ArchiSteamFarm.NLog.Targets; diff --git a/ArchiSteamFarm/IPC/Swagger/CustomAttributesSchemaFilter.cs b/ArchiSteamFarm/IPC/Swashbuckle/CustomAttributesSchemaFilter.cs similarity index 98% rename from ArchiSteamFarm/IPC/Swagger/CustomAttributesSchemaFilter.cs rename to ArchiSteamFarm/IPC/Swashbuckle/CustomAttributesSchemaFilter.cs index d99c18dcd..dd81a1a8a 100644 --- a/ArchiSteamFarm/IPC/Swagger/CustomAttributesSchemaFilter.cs +++ b/ArchiSteamFarm/IPC/Swashbuckle/CustomAttributesSchemaFilter.cs @@ -28,7 +28,7 @@ using JetBrains.Annotations; using Microsoft.OpenApi.Models; using Swashbuckle.AspNetCore.SwaggerGen; -namespace ArchiSteamFarm.IPC.Swagger; +namespace ArchiSteamFarm.IPC.Swashbuckle; [UsedImplicitly] internal sealed class CustomAttributesSchemaFilter : ISchemaFilter { diff --git a/ArchiSteamFarm/IPC/Swagger/EnumSchemaFilter.cs b/ArchiSteamFarm/IPC/Swashbuckle/EnumSchemaFilter.cs similarity index 98% rename from ArchiSteamFarm/IPC/Swagger/EnumSchemaFilter.cs rename to ArchiSteamFarm/IPC/Swashbuckle/EnumSchemaFilter.cs index 4eb9c87b7..8884bb51b 100644 --- a/ArchiSteamFarm/IPC/Swagger/EnumSchemaFilter.cs +++ b/ArchiSteamFarm/IPC/Swashbuckle/EnumSchemaFilter.cs @@ -29,7 +29,7 @@ using Microsoft.OpenApi.Extensions; using Microsoft.OpenApi.Models; using Swashbuckle.AspNetCore.SwaggerGen; -namespace ArchiSteamFarm.IPC.Swagger; +namespace ArchiSteamFarm.IPC.Swashbuckle; [UsedImplicitly] internal sealed class EnumSchemaFilter : ISchemaFilter { diff --git a/ArchiSteamFarm/IPC/Swagger/ReadOnlyFixesSchemaFilter.cs b/ArchiSteamFarm/IPC/Swashbuckle/ReadOnlyFixesSchemaFilter.cs similarity index 97% rename from ArchiSteamFarm/IPC/Swagger/ReadOnlyFixesSchemaFilter.cs rename to ArchiSteamFarm/IPC/Swashbuckle/ReadOnlyFixesSchemaFilter.cs index d798fc1e2..cdd418324 100644 --- a/ArchiSteamFarm/IPC/Swagger/ReadOnlyFixesSchemaFilter.cs +++ b/ArchiSteamFarm/IPC/Swashbuckle/ReadOnlyFixesSchemaFilter.cs @@ -27,7 +27,7 @@ using JetBrains.Annotations; using Microsoft.OpenApi.Models; using Swashbuckle.AspNetCore.SwaggerGen; -namespace ArchiSteamFarm.IPC.Swagger; +namespace ArchiSteamFarm.IPC.Swashbuckle; [UsedImplicitly] internal sealed class ReadOnlyFixesSchemaFilter : ISchemaFilter {