14 lines
496 B
C#
14 lines
496 B
C#
namespace Marco.Pms.Model.Dtos.Forum
|
|
{
|
|
public class AddCommentDto
|
|
{
|
|
public Guid Id { get; set; } = Guid.Empty;
|
|
public Guid TicketId { get; set; } = Guid.Empty;
|
|
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<ForumAttachmentDto>? Attachments { get; set; }
|
|
}
|
|
}
|