Files

8 lines
154 B
C#

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