33 lines
816 B
C#
33 lines
816 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace HUIWEI.SAL_SaleOrder
|
|
{
|
|
[Serializable()]
|
|
[DesignerCategory("code")]
|
|
[XmlType(AnonymousType = true)]
|
|
[XmlRoot(elementName: "PurchaseOrder", IsNullable = false)]
|
|
public class PurchaseOrder
|
|
{
|
|
/// <remarks/>
|
|
public PurchaseOrderTradingPartnerMetadata TradingPartnerMetadata { get; set; }
|
|
}
|
|
|
|
/// <remarks/>
|
|
[Serializable()]
|
|
[DesignerCategory("code")]
|
|
[XmlType(AnonymousType = true)]
|
|
public partial class PurchaseOrderTradingPartnerMetadata
|
|
{
|
|
/// <remarks/>
|
|
public string SenderName { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string ReceiverName { get; set; }
|
|
}
|
|
}
|