using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DSWebMobileService { public class CustModulle { private string custname = string.Empty; private string opdate = string.Empty; private string zlusd = string.Empty; private string zlrmb = string.Empty; private string zlttl = string.Empty; public string CustName { get { return custname; } set { custname = value; } } public string OPDate { get { return opdate; } set { opdate = value; } } public string ZLUsd { get { return zlusd; } set { zlusd = value; } } public string ZLRmb { get { return zlrmb; } set { zlrmb = value; } } public string ZLTtl { get { return zlttl; } set { zlttl = value; } } } }