YD_Event.Admin/YD_Event.Application/Config/Dtos/CustomConfigDetailOutput.cs
2025-12-17 10:32:52 +08:00

21 lines
420 B
C#

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