using System.Collections.Generic; using AccountManagement.Application.Contracts.Account; using AccountManagement.Application.Contracts.Assign; using AccountManagement.Application.Contracts.Media; using AccountManagement.Application.Contracts.Ticket; namespace AccountManagement.Application.Contracts.Task; public class EditTask:CreateTask { public long Id { get; set; } public List medias { get; set; } public string? CompleteDescription { get; set; } public bool IsDone { get; set; } public bool IsCancel { get; set; } public string CreateDateFa { get; set; } public List DeletedFileIds { get; set; } public List AssignViewModels { get; set; } public AccountViewModel SenderViewModel { get; set; } public EditTicket TicketViewModel { get; set; } public long? TicketId { get; set; } public List AssignsLists { get; set; } public bool HasTicket { get; set; } public long TaskScheduleId { get; set; } public bool HasRequest { get; set; } }