ByteDecoder/Queryology

View on GitHub
src/Queryology.Example/Models/Review.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace ByteDecoder.Queryology.Example.Models;

public class Review
{
    public int ReviewId { get; set; }
    public string? VoterName { get; set; }
    public int NumStars { get; set; }
    public string? Comment { get; set; }

    // Relationships
    public int BookId { get; set; }
}