namespace Nuuru.Server.DTOs.Moderation { /// /// Data transfer object for ModerationAction entity /// public class ModerationActionDto { public Guid Id { get; set; } public string Action { get; set; } public string TargetType { get; set; } public string TargetId { get; set; } public string? Reason { get; set; } public string? Details { get; set; } public DateTime Timestamp { get; set; } public ModeratorDto? Moderator { get; set; } } }