17 lines
548 B
C#
17 lines
548 B
C#
using Managing.Infrastructure.Databases.MongoDb.Attributes;
|
|
using Managing.Infrastructure.Databases.MongoDb.Configurations;
|
|
|
|
namespace Managing.Infrastructure.Databases.MongoDb.Collections;
|
|
|
|
[BsonCollection("BestTrader")]
|
|
public class BestTraderDto : Document
|
|
{
|
|
public string Address { get; set; }
|
|
public int Winrate { get; set; }
|
|
public decimal Pnl { get; set; }
|
|
public int TradeCount { get; set; }
|
|
public decimal AverageWin { get; set; }
|
|
public decimal AverageLoss { get; set; }
|
|
public decimal Roi { get; set; }
|
|
}
|