Files
Backend-Api/AccountManagement.Application.Contracts/Task/OperationModalViewModel.cs
2024-07-10 20:25:54 +03:30

19 lines
681 B
C#

using System.Collections.Generic;
using AccountManagement.Application.Contracts.Account;
using AccountManagement.Application.Contracts.Assign;
namespace AccountManagement.Application.Contracts.Task;
public class OperationModalViewModel
{
public List<AccountViewModel> Accounts { get; set; }
public long TaskId { get; set; }
public CreateAssign CreateAssign { get; set; }
public CreateTaskCancel CreateTaskCancel { get; set; }
public CreateTaskTimeRequest CreateTaskTimeRequest { get; set; }
public CompleteTaskViewModel CompleteTaskViewModel { get; set; }
public TaskViewModel ModalTaskRequest { get; set; }
public string Type { get; set; }
}