Rename EmailApi.Models.* namespace to Email.Models.* in email-api-models

Removes the spurious Api segment to match the pattern used by all other
models projects: CvMatcher.Models.*, Rag.Models.*, PageFetcher.Models.*.

Updated all consumers: email-api, api, cv-search-job.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 18:06:38 +03:00
parent e1f171168e
commit b1ed1cb201
11 changed files with 16 additions and 16 deletions
@@ -1,10 +1,10 @@
using Email.Data.Services;
using EmailApi.Models.Requests;
using Email.Models.Requests;
using MailKit.Net.Smtp;
using MailKit.Security;
using Microsoft.Extensions.Options;
using MimeKit;
using EmailApi.Models.Settings;
using Email.Models.Settings;
using Models.Settings;
namespace Api.Services;