Move SmtpSettings and PageFetcherSettings into their respective models projects

Settings classes now live in the -models project alongside DTOs and client
interfaces, eliminating the Settings/ folder from both API projects.

- SmtpSettings: email-api/Settings/ → email-api-models/Settings/ (namespace EmailApi.Models.Settings)
- PageFetcherSettings: page-fetcher-api/Settings/ → page-fetcher-api-models/Settings/ (namespace PageFetcher.Models.Settings)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 18:00:44 +03:00
parent 30a8df431f
commit ae2bc9b902
6 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ using System.Reflection;
using Microsoft.EntityFrameworkCore;
using PageFetcher.Data;
using PageFetcherApi.Services;
using PageFetcherApi.Settings;
using PageFetcher.Models.Settings;
using Serilog;
using StartupHelpers;