first commit
This commit is contained in:
11
BookHive/DTO/Review/CreateReviewDto.cs
Normal file
11
BookHive/DTO/Review/CreateReviewDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace BookHive.DTO.Review;
|
||||
|
||||
public class CreateReviewDto
|
||||
{
|
||||
|
||||
public int BookId { get; set; }
|
||||
public int MemberId { get; set; }
|
||||
|
||||
public int Rating { get; set; }
|
||||
public string? Comment { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user