Allow TapeImage to report the media is really a tape.

This commit is contained in:
2019-05-02 00:23:54 +01:00
parent 309a68e64d
commit 141370a451

View File

@@ -52,5 +52,9 @@ namespace DiscImageChef.CommonTypes.Interfaces
/// Gets a list of all the partitions registered in the image
/// </summary>
List<TapePartition> TapePartitions { get; }
/// <summary>
/// If the media is a really a tape, as some formats can store non-tapes
/// </summary>
bool IsTape { get; }
}
}