8 lines
151 B
C#
8 lines
151 B
C#
using System;
|
|
using Games.Entities;
|
|
using MediatR;
|
|
|
|
namespace Games.Commands
|
|
{
|
|
public record AddGamesCommand(IEnumerable<Game> games) : IRequest;
|
|
} |