38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WolfOfWallStreet.Models.MofidOnline
|
|
{
|
|
public class MofidOnlineOrder
|
|
{
|
|
public string Mode { get; set; }
|
|
public string SymbolId { get; set; }
|
|
public string OrderPrice { get; set; }
|
|
public string OrderType { get; set; }
|
|
public string OrderSide { get; set; }
|
|
public string OrderValidity { get; set; }
|
|
public string OrderValiditydate { get; set; }
|
|
public string OrderTotalQuantity { get; set; }
|
|
public string TriggerPrice { get; set; }
|
|
public string MinimumQuantity { get; set; }
|
|
public string MaxShown { get; set; }
|
|
public string BourseCode { get; set; }
|
|
public string isin { get; set; }
|
|
public string pk { get; set; }
|
|
public string OrderMode { get; set; }
|
|
public string orderid { get; set; }
|
|
public string OrderExpectedQuantity { get; set; }
|
|
public object ts { get; set; }
|
|
public string cs { get; set; }
|
|
public string ss { get; set; }
|
|
public string SymbolNsc { get; set; }
|
|
public bool SendSMS { get; set; }
|
|
public string browserTime { get; set; }
|
|
public string IsSymbolInAgreement { get; set; }
|
|
public bool AcceptedAgreement { get; set; }
|
|
|
|
public string Cookies { get; set; }
|
|
}
|
|
}
|