namespace QuotifyBE.Entities { public class QuoteCategory { public int QuoteId { get; set; } public int CategoryId { get; set; } public Quote? Quote { get; set; } public Category? Category { get; set; } } }