Files
Backend-Api/AccountManagement.Application.Contracts/TaskSchedule/TaskScheduleDetailsViewModel.cs
2025-04-07 19:44:22 +03:30

20 lines
752 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 List<MediaViewModel> Medias { get; set; }
}