Return new DTO "MinimalManga" for endpoints that return a lot of Manga-data

This commit is contained in:
2025-09-01 23:43:59 +02:00
parent 3b8570cf57
commit e96b2585e0
3 changed files with 26 additions and 17 deletions

View File

@@ -0,0 +1,5 @@
using API.Schema.MangaContext;
namespace API.Controllers.DTOs;
public sealed record MinimalManga(string Key, string Name, string Description, MangaReleaseStatus ReleaseStatus);