You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

31 lines
707 B

namespace RpcHelper {
public class order {
private string _orderCode = string.Empty;
public string orderCode
{
get { return _orderCode; }
set { _orderCode = value; }
}
private string _orderFright = string.Empty;
public string orderFright
{
get { return _orderFright; }
set { _orderFright = value; }
}
private string _orderDriver = string.Empty;
public string orderDriver
{
get { return _orderDriver; }
set { _orderDriver = value; }
}
private string _orderCar = string.Empty;
public string orderCar
{
get { return _orderCar; }
set { _orderCar = value; }
}
}
}