Phase 4.6a: CopySignal + PolymarketApiService in den Core

- CopySignal als generischer Core-Typ (Namespace PolyTraderSharp.Models beibehalten).
- PolymarketApiService nach Core (nutzt nur TerminalLogger + HttpClient,
  keine DB); ungenutzte DB-Usings entfernt.
- Build 0 Fehler.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Richard
2026-07-01 19:47:28 +02:00
co-authored by Claude Opus 4.8
parent 827193c774
commit 9c068b448e
2 changed files with 0 additions and 2 deletions
-19
View File
@@ -1,19 +0,0 @@
namespace PolyTraderSharp.Models
{
public class CopySignal
{
public int SourceTradeId { get; set; }
public int TraderId { get; set; }
public string MarketSlug { get; set; } = string.Empty;
public string ConditionId { get; set; } = string.Empty;
public string TokenId { get; set; } = string.Empty;
public string MarketQuestion { get; set; } = string.Empty;
public string Side { get; set; } = "BUY";
public decimal Price { get; set; }
public decimal Size { get; set; }
public string Outcome { get; set; } = string.Empty;
public DateTime Timestamp { get; set; }
public DateTime? EndDate { get; set; }
public string Reason { get; set; } = string.Empty;
}
}