using System; using Games.Entities; using MediatR; namespace Games.Commands { public record AddGamesCommand(IEnumerable games) : IRequest; }