Cleaned code

This commit is contained in:
2026-03-17 10:27:53 +01:00
parent 15075eb051
commit d202d1541d
55 changed files with 306 additions and 264 deletions

View File

@@ -3,10 +3,10 @@ namespace BookHive.DTO.Review;
public class UpdateReviewDto
{
public int Id { get; set; }
public int BookId { get; set; }
public int MemberId { get; set; }
public int Rating { get; set; }
public string? Comment { get; set; }
}