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 AccountsList { get; set; } public List PositionViewModels { get; set; } public string DateFa { get; set; } public long Id { get; set; } }