using System.Collections.Generic; using AccountManagement.Application.Contracts.Media; using AccountManagement.Application.Contracts.Task; namespace AccountManagement.Application.Contracts.TaskSchedule; public class TaskScheduleDetailsViewModel { public string SenderName { get; set; } public List AssignedName { get; set; } public TaskScheduleType TaskScheduleType { get; set; } public TaskScheduleUnitType TaskScheduleUnitType { get; set; } public string UnitNumber { get; set; } public string CreationDateFa { get; set; } public string ContractingPartyName { get; set; } public string Title { get; set; } public string Description { get; set; } public string Count { get; set; } public string FirstEndTaskDate { get; set; } public List Medias { get; set; } }