using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Report.Entity { public class RequestDesign { public string WebsiteUrl { get; set; } public string ApiUrl { get; set; } public string ImageUrl { get; set; } public string TemplatePath { get; set; } public string DataSetJson { get; set; } public ReportParameter[] Parameters { get; set; } } }