33 lines
943 B
C#
33 lines
943 B
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace AccountManagement.Application.Contracts.Task;
|
|
|
|
public class CreateTask
|
|
{
|
|
public long SenderId { get; set; }
|
|
public List<long> ReceiverId { get; set; }
|
|
public string Title { get; set; }
|
|
public string EndTaskDate { get; set; }
|
|
public string EndTaskTime { get; set; }
|
|
public string ContractingPartyName { get; set; }
|
|
public string? Description { get; set; }
|
|
public List<long> PositionId { get; set; }
|
|
public List<long> UploadedMedia { get; set; }
|
|
public long UploadedVoiceMedia { get; set; }
|
|
|
|
#region Task Schedule
|
|
|
|
public string ScheduleCount { get; set; }
|
|
public string ScheduleType{ get; set; }
|
|
public bool HasSchedule { get; set; }
|
|
public string ScheduleUnitType { get; set; }
|
|
public string ScheduleUnitNumber { get; set; }
|
|
public long TaskScheduleId { get; set; }
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
} |