mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:57:22 +01:00
8 lines
No EOL
213 B
C#
8 lines
No EOL
213 B
C#
namespace MareSynchronos.WebAPI.Utils;
|
|
|
|
public class FileTransfer
|
|
{
|
|
public long Transferred { get; set; } = 0;
|
|
public long Total { get; set; } = 0;
|
|
public string Hash { get; set; } = string.Empty;
|
|
} |