using Newtonsoft.Json.Linq;
namespace YD_Event.Application.Config.Dtos;
public class CustomConfigDetailOutput
{
///
/// 表单渲染Json
///
public JObject FormJson { get; set; }
///
/// 表单数据
///
public JObject DataJson { get; set; }
///
/// 配置项Id
///
public long ItemId { get; set; }
}