YD_Event.Admin/YD_Event.Application/Client/Dtos/CommentPageQueryInput.cs
2025-12-17 11:12:13 +08:00

9 lines
248 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace YD_Event.Application.Client.Dtos;
public class CommentPageQueryInput : Pagination
{
/// <summary>
/// 对应模块ID或评论IDnull表留言0代表友链的评论
/// </summary>
public long? Id { get; set; }
}