feat: enhance user club feature management with sorting and creation timestamps
This commit is contained in:
+12
-2
@@ -31,7 +31,7 @@ public class UserClubFeatureDto
|
||||
public string FeatureTitle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// توضیحات ویژگی
|
||||
/// توضیحات کوتاه ویژگی
|
||||
/// </summary>
|
||||
public string? FeatureDescription { get; set; }
|
||||
|
||||
@@ -46,7 +46,17 @@ public class UserClubFeatureDto
|
||||
public DateTime GrantedAt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// یادداشت
|
||||
/// یادداشت (برای نمایش در مدال جزئیات)
|
||||
/// </summary>
|
||||
public string? Notes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ترتیب نمایش
|
||||
/// </summary>
|
||||
public int SortOrder { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ ایجاد رکورد
|
||||
/// </summary>
|
||||
public DateTime CreatedAt { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user