using System; namespace FastReport.Web { /// /// Class for export item description /// [Serializable] public class WebExportItem { private string reportID; private byte[] file; private string fileName; private string format; private string contentType; /// /// Report ID /// public string ReportID { get { return reportID; } set { reportID = value; } } /// /// Binary data of exported files /// public byte[] File { get { return file; } set { file = value; } } /// /// Name of exported file /// public string FileName { get { return fileName; } set { fileName = value; } } /// /// Format of exported file /// public string Format { get { return format; } set { format = value; } } /// /// MIME type of exported file /// public string ContentType { get { return contentType; } set { contentType = value; } } } }