2025-12-17 10:32:52 +08:00

9 lines
207 B
C#

namespace Easy.Admin.Application.Client.Dtos;
public class TalkDetailOutput : TalksOutput
{
/// <summary>
/// 是否允许评论
/// </summary>
public bool IsAllowComments { get; set; }
}