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.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ICSSoft.Entity { public class ERPODNRT { public string VenCode { get; set; } public string WHCode { get; set; } public string ODNRTCode { get; set; } public string User { get; set; } public string MTime { get; set; } public string UpdateTodoQuantity { get; set; } public List<ERPODNRTList> details { get; set; } }
public class ERPODNRTList { public string Sequence { get; set; } public string InvCode { get; set; } public string Quantity { get; set; } public string Amount { get; set; } public string Currency { get; set; } public string UnitPrice { get; set; } public string ODNRTDetailID { get; set; } } }
|