9 lines
200 B
C#
9 lines
200 B
C#
|
|
namespace Easy.Admin.Application.Config.Dtos;
|
|||
|
|
|
|||
|
|
public class UpdateCustomConfigInput : AddCustomConfigInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 配置id
|
|||
|
|
/// </summary>
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
}
|