0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 06:30:43 -05:00

29 lines
586 B
C#
Raw Normal View History

2024-05-21 20:15:19 +01:00
namespace SPT.ByteBanger
2023-03-03 19:25:33 +00:00
{
public class DiffResult
{
public DiffResultType Result { get; }
public PatchInfo PatchInfo { get; }
public DiffResult(DiffResultType result, PatchInfo patchInfo)
{
Result = result;
PatchInfo = patchInfo;
}
}
public enum DiffResultType
{
Success,
OriginalFilePathInvalid,
OriginalFileNotFound,
OriginalFileReadFailed,
PatchedFilePathInvalid,
PatchedFileNotFound,
PatchedFileReadFailed,
FilesMatch
}
}