Files
AI-Stock-Trader/WebServer/Entities/Stock.cs
T

8 lines
147 B
C#

namespace Entities {
class Stock {
public string Symbol { get; set; } = "";
public float Score { get; set; } = 0;
}
}