Files
mlb-gameday-dotnet-react/games/Commands/AddGameCommand.cs
2023-06-01 08:52:05 -05:00

8 lines
151 B
C#

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