feat: add club membership filters and activation details to network tree
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 2m13s
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 2m13s
This commit is contained in:
+21
@@ -11,6 +11,27 @@ public class NetworkTreeDto
|
||||
public string? LastName { get; set; }
|
||||
public NetworkLeg? LegPosition { get; set; }
|
||||
public int CurrentDepth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ فعالسازی در باشگاه مشتریان
|
||||
/// </summary>
|
||||
public DateTime? ClubActivatedAt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// وضعیت فعال بودن در باشگاه مشتریان
|
||||
/// </summary>
|
||||
public bool IsClubActive { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// شماره هفته فعالسازی
|
||||
/// </summary>
|
||||
public string? ActivationWeekNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ ایجاد کاربر
|
||||
/// </summary>
|
||||
public DateTimeOffset UserCreated { get; set; }
|
||||
|
||||
public NetworkTreeDto? LeftChild { get; set; }
|
||||
public NetworkTreeDto? RightChild { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user