Initial commit: EbayListingTool WPF application

C# WPF desktop app for creating eBay UK listings with AI-powered
photo analysis. Features: multi-photo vision analysis via OpenRouter
(Claude), local listing save/export, saved listings browser,
single item listing form, bulk import from CSV/Excel, and eBay
OAuth authentication.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Peter Foster
2026-04-13 17:33:27 +01:00
commit 9fad0f2ac0
29 changed files with 5908 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
namespace EbayListingTool.Models;
public class EbaySettings
{
public string ClientId { get; set; } = "";
public string ClientSecret { get; set; } = "";
public string RuName { get; set; } = "";
public bool Sandbox { get; set; } = true;
public int RedirectPort { get; set; } = 8080;
public string DefaultPostcode { get; set; } = "";
}
public class AnthropicSettings
{
public string ApiKey { get; set; } = "";
}