mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
21 lines
508 B
C#
21 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Sys.FileSystem.ISO9660
|
|
{
|
|
public partial class ISO9660
|
|
{
|
|
public int Volume_Descriptor_Type_1 = 1;
|
|
public enum Standard_Identifier_CD001
|
|
{
|
|
Standard_Identifier2 = 2,
|
|
Standard_Identifier3 = 3,
|
|
Standard_Identifier4 = 4,
|
|
Standard_Identifier5 = 5,
|
|
Standard_Identifier6 = 6,
|
|
};
|
|
|
|
};
|
|
}
|