add list pending

This commit is contained in:
MahanCh
2025-05-19 20:32:15 +03:30
parent 43c56aa4a1
commit 3b38b80a28
9 changed files with 186 additions and 111 deletions

View File

@@ -21,4 +21,5 @@ public class EditTask:CreateTask
public List<AccountViewModel> AssignsLists { get; set; }
public bool HasTicket { get; set; }
public long TaskScheduleId { get; set; }
public bool HasRequest { get; set; }
}

View File

@@ -48,6 +48,7 @@ public class TaskViewModel
public bool CanDelete { get; set; }
public bool CanAssign { get; set; }
public bool CanCheckRequests { get; set; }
public bool HasRequest { get; set; }
public AssignViewModel AssignedReceiverViewModel { get; set; }
public TaskScheduleType ScheduleType { get; set; }

View File

@@ -15,6 +15,8 @@ public class TaskScheduleDetailsViewModel
public string ContractingPartyName { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Count { get; set; }
public string FirstEndTaskDate { get; set; }
public List<MediaViewModel> Medias { get; set; }
}