Files
predavanja/Events-WebApi/Events.WebAPI.Contract/Commands/DeleteCommand.cs
2026-05-10 23:39:55 +02:00

9 lines
156 B
C#

using MediatR;
namespace MobilityOne.Common.Commands;
public class DeleteCommand<TDto, TPK>(TPK id) : IRequest
{
public TPK Id { get; set; } = id;
}