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

9 lines
198 B
C#

namespace YD_Event.Application.Config.Dtos;
public class UpdateCustomConfigInput : AddCustomConfigInput
{
/// <summary>
/// 配置id
/// </summary>
public long Id { get; set; }
}