17 lines
473 B
C#
17 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WolfOfWallStreet.Models.EasyTrader
|
|
{
|
|
public class EasyTraderOrderResult
|
|
{
|
|
public bool isSuccessfull { get; set; }
|
|
public string message { get; set; }
|
|
public int omsOrderId { get; set; }
|
|
public DateTime orderEntryDate { get; set; }
|
|
public string orderEntryDateJalali { get; set; }
|
|
public object omsErrorDescription { get; set; }
|
|
}
|
|
}
|