YD_Event.Admin/YD_Event.Application/Config/Dtos/CustomConfigSetJsonInput.cs

18 lines
414 B
C#
Raw Normal View History

2025-12-17 10:32:52 +08:00
using Newtonsoft.Json.Linq;
namespace Easy.Admin.Application.Config.Dtos;
public class CustomConfigSetJsonInput
{
/// <summary>
/// 自定义配置ID
/// </summary>
[Required(ErrorMessage = "缺少必要参数")]
public long Id { get; set; }
/// <summary>
/// 表单设计
/// </summary>
[Required(ErrorMessage = "请设计表单")]
public JObject Json { get; set; }
}