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

9 lines
175 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using Wabbajack.Paths;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.DTOs.BSA.FileStates;
public abstract class AFile
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
public int Index { get; set; }
public RelativePath Path { get; set; }
2021-09-27 12:42:46 +00:00
}