using Microsoft.AspNetCore.Http; namespace Tiobon.Core.Model; public class ChunkUpload { public IFormFile file { get; set; } public string fileName { get; set; } = null; public int chunkIndex { get; set; } public int totalChunks { get; set; } public string id { get; set; } = null; }