classlib/ExpenseTracker.Application/Users/Commands/Delete/DeleteUserCommand.cs
2024-08-07 21:12:02 +03:00

9 lines
159 B
C#

using MediatR;
namespace ExpenseTracker.Application.Users.Commands.Delete;
public record DeleteUserCommand : IRequest
{
public string Id { get; set; }
}