Files
Backend-Api/AccountManagement.Application.Contracts/TaskSchedule/TaskScheduleDetailsViewModel.cs
2025-05-19 20:32:15 +03:30

22 lines
839 B
C#

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<string> 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<MediaViewModel> Medias { get; set; }
}