9 lines
248 B
C#
Raw Permalink Normal View History

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