20 lines
604 B
C#
20 lines
604 B
C#
using AccountManagement.Application.Contracts.Account;
|
|
using AccountManagement.Application.Contracts.Position;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountManagement.Application.Contracts.Task;
|
|
public class CreateTaskModal
|
|
{
|
|
public CreateTask Command { get; set; }
|
|
public long TicketId{ get; set; }
|
|
public List<AccountViewModel> AccountsList { get; set; }
|
|
public List<PositionViewModel> PositionViewModels { get; set; }
|
|
public string DateFa { get; set; }
|
|
public long Id { get; set; }
|
|
}
|
|
|