Files
CMS/src/CMSMicroservice.Application/NetworkMembershipCQ/Queries/GetNetworkStatistics/GetNetworkStatisticsQuery.cs
T
masoodafar-web d1ca72300d
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 8s
refactor: Remove ICurrentUserService dependency from query handlers and update user ID handling logic
2026-02-10 23:01:49 +03:30

10 lines
373 B
C#

namespace CMSMicroservice.Application.NetworkMembershipCQ.Queries.GetNetworkStatistics;
public class GetNetworkStatisticsQuery : IRequest<GetNetworkStatisticsResponseDto>
{
/// <summary>
/// شناسه کاربر برای محاسبه آمار شبکه او - 0 یعنی آمار کل شبکه (root user)
/// </summary>
public long UserId { get; set; }
}