15 lines
391 B
C#
15 lines
391 B
C#
using CleanArchitecture.Domain;
|
|
using MediatR;
|
|
|
|
namespace CleanArchitecture.Application.Features.Videos.Commands.UpdateVideo
|
|
{
|
|
public class UpdateVideoCommand : IRequest<Video>
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Nombre { get; set; } = string.Empty;
|
|
|
|
public string UserThatMakesAction { get; set; } = string.Empty;
|
|
|
|
}
|
|
}
|