ByteDecoder/Queryology

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

Summary

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

public class PriceOffer
{
    public int PriceOfferId { get; set; }
    public decimal NewPrice { get; set; }
    public string? PromotionalText { get; set; }

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