14 lines
472 B
C#

namespace Marco.Pms.Model.Dtos.Forum
{
public class UpdateCommentDto
{
public Guid Id { get; set; }
public Guid TicketId { get; set; }
public Guid AuthorId { get; set; }
public string MessageText { get; set; } = string.Empty;
public DateTime SentAt { get; set; }
public Guid? ParentMessageId { get; set; } // For threaded replies
public ICollection<UpdateAttachmentDto>? Attachments { get; set; }
}
}