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"; } } } }