diff --git a/EbayListingTool/Models/SavedListing.cs b/EbayListingTool/Models/SavedListing.cs index fff9b2b..429416b 100644 --- a/EbayListingTool/Models/SavedListing.cs +++ b/EbayListingTool/Models/SavedListing.cs @@ -1,3 +1,4 @@ +using System.Collections.Generic; using EbayListingTool.Helpers; namespace EbayListingTool.Models; @@ -11,6 +12,11 @@ public class SavedListing public decimal Price { get; set; } public string Category { get; set; } = ""; public string ConditionNotes { get; set; } = ""; + public string CategoryId { get; set; } = ""; + public ItemCondition Condition { get; set; } = ItemCondition.Used; + public PostageOption Postage { get; set; } = PostageOption.RoyalMailTracked48; + public decimal ShippingCost { get; set; } + public Dictionary Aspects { get; set; } = new(); public string ExportFolder { get; set; } = ""; /// Absolute paths to photos inside ExportFolder.