using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DataLibrary.XmlCons { public class XmlConsReportService { private string pdfPath; public string PDFPath { get { return pdfPath; } set { pdfPath = value; } } private string pdfUrl; public string PDFUrl { get { return pdfUrl; } set { pdfUrl = value; } } private int pdfDeleteTime; public int PDFDeleteTime { get { return pdfDeleteTime; } set { pdfDeleteTime = value; } } private int pdfMethod; public int PDFMethod { get { return pdfMethod; } set { pdfMethod = value; } } private string command; public string Command { get { return command; } set { command = value; } } } }