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>
17 lines
439 B
C#
17 lines
439 B
C#
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; } = "";
|
|
}
|