using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Model { public class QuotaMonitor_UnderlyingModel { public string UnderlyingCode { get; set; } public double StockEqvNotional { get; set; } public int ClientId { get; set; } public int PositionType { get; set; } public decimal Qty { get; set; } } }