mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
18 lines
557 B
C#
18 lines
557 B
C#
namespace SabreTools.Models.PIC
|
|
{
|
|
/// <see href="https://www.t10.org/ftp/t10/document.05/05-206r0.pdf"/>
|
|
/// <see href="https://github.com/aaru-dps/Aaru.Decoders/blob/devel/Bluray/DI.cs"/>
|
|
public class Constants
|
|
{
|
|
public const string DiscTypeIdentifierROM = "BDO";
|
|
|
|
public const string DiscTypeIdentifierROMUltra = "BDU";
|
|
|
|
public const string DiscTypeIdentifierReWritable = "BDW";
|
|
|
|
public const string DiscTypeIdentifierRecordable = "BDR";
|
|
|
|
public const string DiscTypeIdentifierXGD4 = "XG4";
|
|
}
|
|
}
|