11 lines
304 B
C#
11 lines
304 B
C#
namespace CMSMicroservice.Application.UserCartsCQ.Commands.CreateNewUserCarts;
|
|
public record CreateNewUserCartsCommand : IRequest<CreateNewUserCartsResponseDto>
|
|
{
|
|
//
|
|
public long ProductId { get; init; }
|
|
//
|
|
public long UserId { get; init; }
|
|
//
|
|
public int Count { get; init; }
|
|
|
|
} |