mirror of
https://github.com/aaru-dps/Aaru.CommonTypes.git
synced 2025-12-16 19:24:30 +00:00
Tape partition number is byte sized.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user