Simplify ISO9660 namespaces.

This commit is contained in:
2019-07-22 02:58:56 +01:00
parent 49e5ebc22a
commit 4d7bf51e1d
5 changed files with 36 additions and 101 deletions

View File

@@ -59,16 +59,15 @@ namespace DiscImageChef.Filesystems.ISO9660
{
public DecodedDirectoryEntry AssociatedFile;
public uint Extent;
public string Filename;
public byte FileUnitSize;
public FileFlags Flags;
public byte Interleave;
public string IsoFilename;
public uint Size;
public DateTime? Timestamp;
public ushort VolumeSequenceNumber;
public string JolietFilename;
public override string ToString() => JolietFilename ?? IsoFilename;
public override string ToString() => Filename;
}
}
}