using Nuuru.Server.DTOs.Booru; namespace Nuuru.Server.DTOs.Messaging { public class MessageDto { public int Id { get; set; } public string ContentHtml { get; set; } = string.Empty; /// /// Raw content for editing. Only included for the author. /// public string? ContentRaw { get; set; } public DateTime CreatedAt { get; set; } public DateTime? EditedAt { get; set; } public UploaderDto Author { get; set; } = null!; public Guid ConversationId { get; set; } } }