using FileService.Domain.ValueObjects; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FileService.Application.UploadFileTask { public class TaskInitResponse { public Guid TaskId { get; set; } public string UploadSessionId { get; init; } public StorageLocation StorageLocation { get; init; } } }