blob: 187d152546a6c645d4f91fab48e95e2e2c2ae3eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FileSystem.Network
{
public class StartFileDownloadResponse
{
public byte[] Data { get; set; }
public long Position { get; set; }
public long Length { get; set; }
}
}
|