Tape partition number is byte sized.

This commit is contained in:
2019-05-01 22:50:59 +01:00
parent 54066ea20b
commit 309a68e64d

View File

@@ -35,20 +35,21 @@
// ----------------------------------------------------------------------------
// Copyright © 2011-2019 Natalia Portillo
// ****************************************************************************/
namespace DiscImageChef.CommonTypes.Structs
{
public struct TapePartition
{
/// <summary>
/// Partition number
/// Partition number
/// </summary>
public uint Number;
public byte Number;
/// <summary>
/// First block, inclusive, of the partition
/// First block, inclusive, of the partition
/// </summary>
public ulong FirstBlock;
/// <summary>
/// Last block, inclusive, of the partition
/// Last block, inclusive, of the partition
/// </summary>
public ulong LastBlock;
}