You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
481 B
18 lines
481 B
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; }
|
|
}
|
|
}
|