using System;
namespace DiscImageChef.CommonTypes
{
///
/// Partition structure.
///
public struct Partition
{
/// Partition number, 0-started
public ulong PartitionSequence;
/// Partition type
public string PartitionType;
/// Partition name (if the scheme supports it)
public string PartitionName;
/// Start of the partition, in bytes
public ulong PartitionStart;
/// LBA of partition start
public ulong PartitionStartSector;
/// Length in bytes of the partition
public ulong PartitionLength;
/// Length in sectors of the partition
public ulong PartitionSectors;
/// Information that does not find space in this struct
public string PartitionDescription;
}
}