20 lines
752 B
C#
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; }
|
|
|
|
} |