Files
Backend-Api/AccountManagement.Application.Contracts/Task/CreateTask.cs
2024-08-24 19:13:34 +03:30

32 lines
898 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; }
#endregion
}