using Newtonsoft.Json.Linq;
namespace Easy.Admin.Application.Config.Dtos;
public class CustomConfigSetJsonInput
{
///
/// 自定义配置ID
///
[Required(ErrorMessage = "缺少必要参数")]
public long Id { get; set; }
///
/// 表单设计
///
[Required(ErrorMessage = "请设计表单")]
public JObject Json { get; set; }
}