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

18 lines
412 B
C#
Raw Normal View History

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