10 lines
373 B
C#
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; }
|
|
}
|