9 lines
156 B
C#
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;
|
|
}
|