Files
Backend-Api/AccountManagement.Application.Contracts/Task/OperationModalViewModel.cs
2024-07-05 21:36:15 +03:30

17 lines
624 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 string Type { get; set; }
}