mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-28 19:29:19 +00:00
14 lines
407 B
C#
14 lines
407 B
C#
|
namespace MonoStockPortfolio.Entities
|
||
|
{
|
||
|
public class Position
|
||
|
{
|
||
|
public Position() { }
|
||
|
public Position(long id) { ID = id; }
|
||
|
|
||
|
public long ID { get; private set; }
|
||
|
public string Ticker { get; set; }
|
||
|
public decimal Shares { get; set; }
|
||
|
public decimal PricePerShare { get; set; }
|
||
|
public int ContainingPortfolioID { get; set; }
|
||
|
}
|
||
|
}
|