mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
321 B
C#
13 lines
321 B
C#
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
namespace Wabbajack.DTOs.BSA.FileStates;
|
|
|
|
[JsonName("TES3File")]
|
|
public class TES3File : AFile
|
|
{
|
|
public uint Offset { get; set; }
|
|
public uint NameOffset { get; set; }
|
|
public uint Hash1 { get; set; }
|
|
public uint Hash2 { get; set; }
|
|
public uint Size { get; set; }
|
|
} |