From 52f257b5ad1c8339bcada7932606b886011a900e Mon Sep 17 00:00:00 2001 From: Peter Foster Date: Wed, 15 Apr 2026 09:50:57 +0100 Subject: [PATCH] feat: add CategoryId, Condition, Postage, ShippingCost, Aspects to SavedListing --- EbayListingTool/Models/SavedListing.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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.