wabbajack/Wabbajack.DTOs/ModList/BSA/FileStates/TES3FileState.cs

13 lines
321 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using Wabbajack.DTOs.JsonConverters;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.DTOs.BSA.FileStates;
[JsonName("TES3File")]
public class TES3File : AFile
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
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; }
2021-09-27 12:42:46 +00:00
}