11 lines
336 B
C#
11 lines
336 B
C#
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;
|
|
}
|
|
|
|
} |