using System.Collections.Generic; using Microsoft.AspNetCore.Http; namespace AccountManagement.Application.Contracts.Task; public class CreateTask { public long SenderId { get; set; } public List 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 IFormFile Document1 { get; set; } public IFormFile Document2 { get; set; } public IFormFile Document3 { get; set; } public IFormFile Document4 { get; set; } public IFormFile Document5 { get; set; } public IFormFile Document6 { get; set; } public List PositionId { get; set; } public IFormFile Voice{ get; set; } }