mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-04 03:00:20 +00:00
9 lines
260 B
C#
9 lines
260 B
C#
|
namespace MonoStockPortfolio.Activites.EditPositionScreen
|
|||
|
{
|
|||
|
public class PositionInputModel
|
|||
|
{
|
|||
|
public string TickerText { get; set; }
|
|||
|
public string PriceText { get; set; }
|
|||
|
public string SharesText { get; set; }
|
|||
|
}
|
|||
|
}
|