\"Id\":25,\"Info\":1150276},{\"Name\":\"L\",\"Id\":25,\"Info\":1150275}]",
"Discount": 0,
"SeatId": null,
"SeatNo": null,
"Selected": false,
"DownLoadLink": null,
"IncreaseProductOrderDetailId": null,
"PaymentStatus": 0
}
]
}
]
},
{
"CabinLevel": 1,
"Cabins": [
{
"CabinId": null,
"CabinIntegral": 0,
"CabinName": "R2",
"CabinRemain": 0,
"TotalLimit": 0,
"CabinType": 0,
"CabinPrice": 850,
"CabinPricing": 0,
"AirPortFee": 0,
"FuelFee": 0,
"OtherFee": 0,
"CabinBaggage": 0,
"Products": []
}
]
},
{
"CabinLevel": 2,
"Cabins": [
{
"CabinId": null,
"CabinIntegral": 0,
"CabinName": "P1",
"CabinRemain": 0,
"TotalLimit": 0,
"CabinType": 0,
"CabinPrice": 399,
"CabinPricing": 0,
"AirPortFee": 0,
"FuelFee": 0,
"OtherFee": 0,
"CabinBaggage": 0,
"Products": []
}
]
}
],
"SWCabinInfos": []
}
]
],
"IfSuccess": "Y",
"Code": "0",
"MaxDiscountAmount": null,
"MaxDiscountRate": null,
"OtherInfo": null,
"TargetId": null,
"CustomText": null
}
------------------------------------------------------------------------------------
public class Products
{
public int Must { get; set; }
public int ProductCompanyId { get; set; }
public int ProductId { get; set; }
public string ProductName { get; set; }
public int ProductNum { get; set; }
public int ProductMaxNum { get; set; }
public int ProductPrice { get; set; }
public int ProductType { get; set; }
public int ProductInfo { get; set; }
public string AllProductInfo { get; set; }
public int Discount { get; set; }
public int Selected { get; set; }
public int PaymentStatus { get; set; }
}
public class Cabins
{
public int CabinIntegral { get; set; }
public string CabinName { get; set; }
public int CabinRemain { get; set; }
public int TotalLimit { get; set; }
public int CabinType { get; set; }
public int CabinPrice { get; set; }
public int CabinPricing { get; set; }
public int AirPortFee { get; set; }
public int FuelFee { get; set; }
public int OtherFee { get; set; }
public int CabinBaggage { get; set; }
public List<Products> Products { get; set; }
}
public class CabinInfos
{
public int CabinLevel { get; set; }
public List<Cabins> Cabins { get; set; }
}
public class Packages
{
public int Transport { get; set; }
public int LyId { get; set; }
public string No { get; set; }
public int RouteType { get; set; }
public int Channel { get; set; }
public int RouteArea { get; set; }
public int Id { get; set; }
public string Type { get; set; }
public int IsDiscount { get; set; }
public DateTime DepartureTime { get; set; }
public string Departure { get; set; }
public string DepartureStation { get; set; }
public string DepartureCode { get; set; }
public DateTime ArrivalTime { get; set; }
public string Arrival { get; set; }
public string ArrivalStation { get; set; }
public string ArrivalCode { get; set; }
public int Bus { get; set; }
public int IsReturn { get; set; }
public List<Stopovers> Stopovers { get; set; }
public List<CabinInfos> CabinInfos { get; set; }
public List<SWCabinInfos> SWCabinInfos { get; set; }
}
public class Root
{
public int Currency { get; set; }
public string Step { get; set; }
public int IfExistLC { get; set; }
public List<Packages> Packages { get; set; }
public string IfSuccess { get; set; }
public int Code { get; set; }
}