using System;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Model
{
    public class FastReportItem
    {
        /// <summary>
        /// Table数据源集
        /// </summary>
        public List<DataTable> DataTables { get; set; }
        /// <summary>
        /// 参数键值对
        /// </summary>
        public Dictionary<string, string> ParameterValues { get; set; }
        /// <summary>
        /// 模板路径
        /// </summary>
        public string ReportPath { get; set; }
    }
}