using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CAPI.Custom.Entities { public class QuoteBuyoutSupplier : SurfacePublishedChildEntity { public int? BuyoutQuoteType { get; set; } = CAPI.Custom.BuyoutQuoteType.SelectedItems; // Selected Items public string ContactPerson { get; set; } = string.Empty; public string Currency { get; set; } = string.Empty; public string DefaultDiscount { get; set; } = string.Empty; public string DefaultLeadtime { get; set; } = string.Empty; public decimal? Duty { get; set; } = 0; public string Email { get; set; } = string.Empty; public decimal? ExchangeRate { get; set; } = 0; public decimal? Freight { get; set; } = 0; public string Notes { get; set; } = string.Empty; public int? Status { get; set; } = BuyoutStatus.QuoteRequested;// 1130; // Quote Requested public string Telephone { get; set; } = string.Empty; public decimal? VATRate { get; set; } = 0; public string TradingName { get; set; } = string.Empty; } }