mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 00:15:15 +00:00
20 lines
556 B
C#
20 lines
556 B
C#
using SharpCompress.IO;
|
|
|
|
namespace SharpCompress.Common.Rar.Headers
|
|
{
|
|
internal class SignHeader : RarHeader
|
|
{
|
|
protected override void ReadFromReader(MarkingBinaryReader reader)
|
|
{
|
|
CreationTime = reader.ReadInt32();
|
|
ArcNameSize = reader.ReadInt16();
|
|
UserNameSize = reader.ReadInt16();
|
|
}
|
|
|
|
internal int CreationTime { get; private set; }
|
|
|
|
internal short ArcNameSize { get; private set; }
|
|
|
|
internal short UserNameSize { get; private set; }
|
|
}
|
|
} |