shopping-cart-blazor-wasm/Shared/Cart/LineItem/Delete.cs

12 lines
206 B
C#
Raw Normal View History

using MediatR;
namespace ShoppingCartStarter.Shared.Cart.LineItem
{
public class Delete
{
public class Command : IRequest
{
public int Id { get; set; }
}
}
}