YD_Event.Admin/YD_Event.Application/Config/Dtos/UpdateCustomConfigItemInput.cs
2025-12-17 11:12:13 +08:00

7 lines
204 B
C#

namespace YD_Event.Application.Config.Dtos;
public class UpdateCustomConfigItemInput : AddCustomConfigItemInput
{
[Required(ErrorMessage = "缺少必要参数")]
public long Id { get; set; }
}