Make predictions based on owned stocks
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Entities {
|
||||
|
||||
class loginSession {
|
||||
public string UserName { get; set; } = "";
|
||||
public List<PurchasedStock> TrackedStocks { get; set; } = new List<PurchasedStock>();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace Entities {
|
||||
|
||||
class PurchasedStock {
|
||||
public string Symbol { get; set; } = "";
|
||||
public float PurchasePrice { get; set; } = 0;
|
||||
public float Quantity { get; set; } = 0;
|
||||
public DateTime PurchaseDate { get; set; } = DateTime.Now;
|
||||
public int PredictedMovement { get; set; } = 0;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user