Files
CMS/src/CMSMicroservice.Application/UserCartsCQ/Commands/CreateNewUserCarts/CreateNewUserCartsCommand.cs
T
2025-11-12 02:24:02 +03:30

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; }
}