chore: add API documentation to swagger

This commit is contained in:
2025-07-15 20:08:23 +02:00
parent 1da5e47b88
commit 934b69b11b
7 changed files with 107 additions and 16 deletions

7
DTOs/ErrorDTO.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace QuotifyBE.DTOs;
public record class ErrorDTO
{
public string Status { get; set; }
public string Error_msg { get; set; }
}

View File

@@ -1,3 +1,5 @@
namespace QuotifyBE.DTOs;
public record class QuoteShortDTO
{
public int Id { get; set; }