MireaBackend/Application/Cqrs/Professor/Commands/CreateProfessor/CreateProfessorCommand.cs

9 lines
246 B
C#
Raw Normal View History

2024-01-21 23:13:18 +03:00
using MediatR;
namespace Mirea.Api.DataAccess.Application.Cqrs.Professor.Commands.CreateProfessor;
public class CreateProfessorCommand : IRequest<int>
{
public required string Name { get; set; }
public string? AltName { get; set; }
}