This commit is contained in:
2023-04-09 21:25:08 +03:00
parent 66b3a8cc77
commit b2ea5c61d1
17 changed files with 658 additions and 72 deletions

View File

@@ -8,7 +8,7 @@ public interface ISplitFile
/// <summary>
/// Порядок части
/// </summary>
public byte Num { get; set; }
public int Num { get; set; }
/// <summary>
/// Размер части

View File

@@ -8,7 +8,7 @@ public interface ITargetFileInfo
/// <summary>
/// Имя файла
/// </summary>
public string? FileName { get; set; }
public string FileName { get; set; }
/// <summary>
/// Размер файла
@@ -18,10 +18,10 @@ public interface ITargetFileInfo
/// <summary>
/// md5-сумма файла для проверки
/// </summary>
public byte[]? FileHash { get; set; }
public byte[] FileHash { get; set; }
/// <summary>
/// Количество частей
/// </summary>
public byte SplitCount { get; set; }
public long SplitCount { get; set; }
}