13 lines
315 B
C#
13 lines
315 B
C#
namespace CMSMicroservice.Application.UserCartsCQ.Commands.UpdateUserCarts;
|
|
public record UpdateUserCartsCommand : IRequest<Unit>
|
|
{
|
|
//
|
|
public long Id { get; init; }
|
|
//
|
|
public long ProductId { get; init; }
|
|
//
|
|
public long UserId { get; init; }
|
|
//
|
|
public int Count { get; init; }
|
|
|
|
} |