10 lines
238 B
C#
Raw Permalink Normal View History

2025-12-17 11:12:13 +08:00
namespace YD_Event.Application.Blog.Dtos;
2025-12-17 10:32:52 +08:00
public class UpdateArticleInput : AddArticleInput
{
/// <summary>
/// 文章ID
/// </summary>
[Required(ErrorMessage = "缺少必要参数")]
public long Id { get; set; }
}