MireaBackend/Application/Cqrs/Campus/Commands/UpdateCampus/UpdateCampusCommand.cs

10 lines
269 B
C#
Raw Permalink Normal View History

2024-01-25 17:44:44 +03:00
using MediatR;
namespace Mirea.Api.DataAccess.Application.Cqrs.Campus.Commands.UpdateCampus;
public class UpdateCampusCommand : IRequest
{
public required int Id { get; set; }
public string? FullName { get; set; }
public string? Address { get; set; }
}