15 lines
411 B
C#
15 lines
411 B
C#
using MediatR;
|
|
|
|
namespace CMSMicroservice.Application.ClubFeatureCQ.Queries.GetUserClubFeatures;
|
|
|
|
/// <summary>
|
|
/// دریافت لیست ویژگیهای باشگاه اختصاص یافته به کاربر
|
|
/// </summary>
|
|
public record GetUserClubFeaturesQuery : IRequest<List<UserClubFeatureDto>>
|
|
{
|
|
/// <summary>
|
|
/// شناسه کاربر
|
|
/// </summary>
|
|
public long UserId { get; init; }
|
|
}
|