ByteDecoder/Queryology

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

Summary

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

public class BookAuthor
{
    public int BookId { get; set; }
    public int AuthorId { get; set; }
    public int Order { get; set; }

    // Relationships
    public Book? Book { get; set; }
    public Author? Author { get; set; }
}