19 lines
681 B
C#
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; }
|
|
|
|
} |