feat(application): add DeleteReviewCommand and delete_review use case

This commit is contained in:
2026-05-04 14:17:13 +02:00
parent 9387ae705b
commit 48875a6e86
3 changed files with 33 additions and 0 deletions

View File

@@ -29,3 +29,8 @@ pub struct RegisterCommand {
pub email: String,
pub password: String,
}
pub struct DeleteReviewCommand {
pub review_id: Uuid,
pub requesting_user_id: Uuid,
}