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.
 
 

25 lines
596 B

using System.Collections.Generic;
using System.Xml.Serialization;
using BWP.B3ExportBase.BO;
namespace BWP.B3ButcherManageExport.BO.NC
{
[XmlRoot(ElementName = "ufinterface")]
public class NcUfinterfaceEmp : NcUfinterface
{
protected NcUfinterfaceEmp()
{
BillIDs = new List<long>();
Proc = "add";
Isexchange = "Y";
Codeexchanged = "Y";
Replace = "N";
Account = string.Empty;
Filename = string.Empty;
Receiver = string.Empty;
Roottag = string.Empty;
Sender = string.Empty;
Subbilltype = string.Empty;
}
}
}