mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-26 11:19:24 +00:00
14 lines
No EOL
407 B
C#
14 lines
No EOL
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; }
|
|
}
|
|
} |