From 4dd48e75b184bdbda208a7fc81218ef0076e9d72 Mon Sep 17 00:00:00 2001 From: Lynne Date: Sun, 6 Sep 2020 12:56:10 +1000 Subject: [PATCH] make endDate a property so it gets exported too --- YahooAuctionsItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YahooAuctionsItem.cs b/YahooAuctionsItem.cs index d0ae293..7418ca9 100644 --- a/YahooAuctionsItem.cs +++ b/YahooAuctionsItem.cs @@ -31,7 +31,7 @@ namespace Buypeeb { public string notes { get; set; } public bool favourite { get; set; } = false; public DateTime startDate; - public DateTime endDate; + public DateTime endDate { get; set; } public DateTime lastUpdated; public int bids; public bool autoExtension;