refactor: split shared models and DTOs

This commit is contained in:
Andre Beging
2026-01-29 10:32:33 +01:00
parent 77a3d9ed9c
commit 7c6bfd891c
20 changed files with 357 additions and 143 deletions

View File

@@ -1,4 +1,4 @@
using ASTRAIN.Shared;
using ASTRAIN.Shared.Models;
using Microsoft.EntityFrameworkCore;
namespace ASTRAIN.Api.Data;

View File

@@ -1,7 +1,10 @@
using System.Text.RegularExpressions;
using ASTRAIN.Api.Data;
using ASTRAIN.Api.Services;
using ASTRAIN.Shared;
using ASTRAIN.Shared.Dtos;
using ASTRAIN.Shared.Models;
using ASTRAIN.Shared.Requests;
using ASTRAIN.Shared.Responses;
using Microsoft.EntityFrameworkCore;
var builder = WebApplication.CreateBuilder(args);