From 08d8d0ed229a1cf18c0db423b6ac59644ff494f2 Mon Sep 17 00:00:00 2001 From: Kharec Date: Sat, 10 Jan 2026 22:44:07 +0100 Subject: [PATCH] feat: add MessageResponseDTO and EmptyResponseDTO --- internal/dto/user.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internal/dto/user.go b/internal/dto/user.go index 56df60c..d7fefae 100644 --- a/internal/dto/user.go +++ b/internal/dto/user.go @@ -117,3 +117,9 @@ func ToRegistrationResponseDTO(user *database.User, verificationSent bool) Regis type AccountDeletionResponseDTO struct { PostsDeleted bool `json:"posts_deleted"` } + +type MessageResponseDTO struct { + Message string `json:"message"` +} + +type EmptyResponseDTO struct{}