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:
16
EbayListingTool/Models/AppSettings.cs
Normal file
16
EbayListingTool/Models/AppSettings.cs
Normal 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; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user