namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class eBay_SKU_Relation { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public eBay_SKU_Relation() { eBay_SKU_ListingDetails = new HashSet(); eBay_SKUOther_Relation = new HashSet(); eBay_SKU_VariationItem = new HashSet(); eBay_SKU_VariationSet = new HashSet(); eBay_SKUImage_Relation = new HashSet(); } [Key] public long SKUMain_Id { get; set; } public int StoreInfo_Id { get; set; } [Required] [StringLength(500)] public string StoreName { get; set; } [Required] [StringLength(500)] public string Site { get; set; } public long? Product_Id { get; set; } [StringLength(50)] public string ProductCode { get; set; } [StringLength(3500)] public string ProductName { get; set; } [StringLength(50)] public string ItemID { get; set; } [StringLength(50)] public string SKU { get; set; } public int? CategoryID { get; set; } [StringLength(2500)] public string CategoryName { get; set; } [StringLength(2500)] public string Title { get; set; } [StringLength(2500)] public string SubTitle { get; set; } public int? ConditionID { get; set; } [StringLength(2500)] public string ConditionDisplayName { get; set; } public string ConditionDescription { get; set; } public string Description { get; set; } public int? LayoutID { get; set; } public byte? OptimalPictureSize { get; set; } public int? ThemeID { get; set; } public long? HitCount { get; set; } [StringLength(50)] public string ListType { get; set; } [StringLength(50)] public string Country { get; set; } [StringLength(50)] public string CurrencyCode { get; set; } [Column(TypeName = "numeric")] public decimal? BuyerGuaranteePrice { get; set; } [StringLength(50)] public string BuyerGuaranteePrice_currencyID { get; set; } [Column(TypeName = "numeric")] public decimal? BuyItNowPrice { get; set; } [StringLength(50)] public string BuyItNowPrice_currencyID { get; set; } [Column(TypeName = "numeric")] public decimal? CeilingPrice { get; set; } [StringLength(50)] public string CeilingPrice_currencyID { get; set; } [Column(TypeName = "numeric")] public decimal? FloorPrice { get; set; } [StringLength(50)] public string FloorPrice_currencyID { get; set; } public int? Quantity { get; set; } public int? QuantityAvailable { get; set; } public int? QuantityThreshold { get; set; } [StringLength(50)] public string ApplicationData { get; set; } public byte? AutoPay { get; set; } public byte? BuyerResponsibleForShipping { get; set; } public byte? CategoryBasedAttributesPrefill { get; set; } public byte? CategoryMappingAllowed { get; set; } [StringLength(50)] public string CrossBorderTrade { get; set; } public byte? DisableBuyerRequirements { get; set; } public int? DispatchTimeMax { get; set; } [StringLength(1024)] public string eBayNotes { get; set; } public byte? GetItFast { get; set; } public int? GiftIcon { get; set; } public byte? HideFromSearch { get; set; } public byte? IncludeRecommendations { get; set; } public byte? IntegratedMerchantCreditCardEnabled { get; set; } public byte? IsIntermediatedShippingEligible { get; set; } public int? ItemCompatibilityCount { get; set; } public int? LeadCount { get; set; } [StringLength(256)] public string Location { get; set; } public byte? LocationDefaulted { get; set; } public int? LotSize { get; set; } public byte? MechanicalCheckAccepted { get; set; } public byte? MotorsGermanySearchable { get; set; } public int? NewLeadCount { get; set; } public byte? OutOfStockControl { get; set; } [StringLength(128)] public string PayPalEmailAddress { get; set; } [StringLength(50)] public string PostalCode { get; set; } public byte? PrivateListing { get; set; } [StringLength(512)] public string PrivateNotes { get; set; } public byte? ProxyItem { get; set; } public long? QuestionCount { get; set; } public byte? Relisted { get; set; } public byte? RelistLink { get; set; } public long? RelistParentID { get; set; } public DateTime? ScheduleTime { get; set; } [StringLength(50)] public string SellerProvidedTitle { get; set; } [StringLength(128)] public string SellerVacationNote { get; set; } public byte? ShippingTermsInDescription { get; set; } [StringLength(256)] public string ShipToLocations { get; set; } public byte? SkypeEnabled { get; set; } [StringLength(64)] public string SkypeID { get; set; } [StringLength(50)] public string TaxCategory { get; set; } public byte? TopRatedListing { get; set; } public long? TotalQuestionCount { get; set; } public byte? UpdateReturnPolicy { get; set; } public byte? UpdateSellerInfo { get; set; } public byte? UseRecommendedProduct { get; set; } public byte? UseTaxTable { get; set; } [StringLength(64)] public string VIN { get; set; } [StringLength(128)] public string VINLink { get; set; } [StringLength(50)] public string VRM { get; set; } [StringLength(128)] public string VRMLink { get; set; } public long? WatchCount { get; set; } public int? Enable { get; set; } public int? OrderNo { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public byte? IsVariation { get; set; } public byte? HasOrder { get; set; } public string ExpandFields { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection eBay_SKU_ListingDetails { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection eBay_SKUOther_Relation { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection eBay_SKU_VariationItem { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection eBay_SKU_VariationSet { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection eBay_SKUImage_Relation { get; set; } } }