mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
16 lines
496 B
C#
16 lines
496 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";
|
|
}
|
|
}
|