using MediatR;
namespace CMSMicroservice.Application.UserAddressCQ.Commands.DeleteCustomerAddress;
///
/// Command برای حذف آدرس کاربر فعلی
///
public class DeleteCustomerAddressCommand : IRequest
{
public long Id { get; set; }
// UserId from ICurrentUserService
}