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

9 lines
200 B
C#
Raw Normal View History

2025-12-17 10:32:52 +08:00
namespace Easy.Admin.Application.Config.Dtos;
public class UpdateCustomConfigInput : AddCustomConfigInput
{
/// <summary>
/// 配置id
/// </summary>
public long Id { get; set; }
}