MireaBackend/Application/Cqrs/Group/Commands/UpdateGroup/UpdateGroupCommand.cs

9 lines
231 B
C#
Raw Permalink Normal View History

2024-01-25 17:35:15 +03:00
using MediatR;
namespace Mirea.Api.DataAccess.Application.Cqrs.Group.Commands.UpdateGroup;
public class UpdateGroupCommand : IRequest
{
public required int Id { get; set; }
public required int FacultyId { get; set; }
}