using CAPI.Custom.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CAPI.Custom.Domain.Quotes { public class QuoteEvent { public int QuoteId { get; set; } public int UserId { get; set; } public Quote Quote { get; set; } } }