19 lines
448 B
C#
19 lines
448 B
C#
namespace YLErp.Models
|
|
{
|
|
public class TradeConfirmContractGroupModel
|
|
{
|
|
public int ClientId { get; set; }
|
|
public DateTime ValueDate { get; set; }
|
|
public string UnderlyingType { get; set; }
|
|
public string BuySell { get; set; }
|
|
|
|
public string UnderlyingTypeShort
|
|
{
|
|
get
|
|
{
|
|
return UnderlyingType == "Stock" ? "STO" : "FUT";
|
|
}
|
|
}
|
|
}
|
|
}
|