using FluentResults; using NexusReader.Application.Abstractions.Messaging; namespace NexusReader.Application.Commands.Quiz; public record SubmitQuizResultCommand( string UserId, string Topic, int Score, int TotalQuestions) : ICommand;