- Aggiornamento alla versione Microsoft.EntityFrameworkCore.Sqlite 8.0.0. - Aggiornamento alla versione Microsoft.Windows.SDK.BuildTools 10.0.26100.6584. - Migliorata l'interfaccia per l'inserimento di più URL/ID di aste. - Aggiunti pulsanti per "Aste Chiuse" e "Esporta" in MainWindow. - Creata finestra "Aste Chiuse" per visualizzare e gestire aste chiuse. - Implementato scraper per estrarre dati da aste chiuse. - Aggiunto supporto per esportazione dati in CSV, JSON e XML. - Introdotto contesto Entity Framework per statistiche delle aste. - Aggiunto servizio per calcolo e gestione delle statistiche. - Gestite preferenze di esportazione con salvataggio in file JSON.
16 lines
419 B
C#
16 lines
419 B
C#
using System;
|
|
|
|
namespace AutoBidder.Models
|
|
{
|
|
public class ClosedAuctionRecord
|
|
{
|
|
public string? AuctionUrl { get; set; }
|
|
public string? ProductName { get; set; }
|
|
public double? FinalPrice { get; set; }
|
|
public string? Winner { get; set; }
|
|
public int? BidsUsed { get; set; }
|
|
public DateTime ScrapedAt { get; set; }
|
|
public string? Notes { get; set; }
|
|
}
|
|
}
|