25 lines
1.0 KiB
C#
25 lines
1.0 KiB
C#
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<MediaViewModel> 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<long> DeletedFileIds { get; set; }
|
|
public List<AssignViewModel> AssignViewModels { get; set; }
|
|
public AccountViewModel SenderViewModel { get; set; }
|
|
public EditTicket TicketViewModel { get; set; }
|
|
public long? TicketId { get; set; }
|
|
public List<AccountViewModel> AssignsLists { get; set; }
|
|
public bool HasTicket { get; set; }
|
|
public long TaskScheduleId { get; set; }
|
|
public bool HasRequest { get; set; }
|
|
} |