Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created November 30, 2020 08:13
Show Gist options
  • Save rahulsahay19/bcffb0b8dfc5a6304b4bd279fc91c116 to your computer and use it in GitHub Desktop.
Save rahulsahay19/bcffb0b8dfc5a6304b4bd279fc91c116 to your computer and use it in GitHub Desktop.
CreateMovieCommand
using MediatR;
using Movies.Application.Responses;
namespace Movies.Application.Commands
{
public class CreateMovieCommand : IRequest<MovieResponse>
{
public string MovieName { get; set; }
public string DirectorName { get; set; }
public string ReleaseYear { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment