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