YD_Event.Admin/YD_Event.Application/Client/Dtos/CommentPageQueryInput.cs

9 lines
250 B
C#
Raw Normal View History

2025-12-17 10:32:52 +08:00
namespace Easy.Admin.Application.Client.Dtos;
public class CommentPageQueryInput : Pagination
{
/// <summary>
/// 对应模块ID或评论IDnull表留言0代表友链的评论
/// </summary>
public long? Id { get; set; }
}