feat: add MessageResponseDTO and EmptyResponseDTO

This commit is contained in:
2026-01-10 22:44:07 +01:00
parent 932c042aa2
commit 08d8d0ed22

View File

@@ -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{}