30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WolfOfWallStreet.Models.OnlinePlus
|
|
{
|
|
public class OnlinePlusOrder
|
|
{
|
|
public bool IsSymbolCautionAgreement { get; set; }
|
|
public bool CautionAgreementSelected { get; set; }
|
|
public bool IsSymbolSepahAgreement { get; set; }
|
|
public bool SepahAgreementSelected { get; set; }
|
|
public int orderCount { get; set; }
|
|
public int orderPrice { get; set; }
|
|
public int FinancialProviderId { get; set; }
|
|
public string minimumQuantity { get; set; }
|
|
public int maxShow { get; set; }
|
|
public int orderId { get; set; }
|
|
public string isin { get; set; }
|
|
public int orderSide { get; set; }
|
|
public int orderValidity { get; set; }
|
|
public object orderValiditydate { get; set; }
|
|
public bool shortSellIsEnabled { get; set; }
|
|
public int shortSellIncentivePercent { get; set; }
|
|
|
|
public string Cookies { get; set; }
|
|
public string Rand { get; set; }
|
|
}
|
|
}
|