LANCommander/LANCommander.Server/Models/ChunkUpload.cs
2024-08-04 18:44:33 -05:00

11 lines
285 B
C#

namespace LANCommander.Server.Models
{
public class ChunkUpload
{
public long Start { get; set; }
public long End { get; set; }
public long Total { get; set; }
public Guid Key { get; set; }
public IFormFile File { get; set; }
}
}