0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 09:50:44 -05:00
assembly-tool/RecodeItLib/Models/CrossCompilerProjectModel.cs

28 lines
742 B
C#
Raw Normal View History

2024-06-18 17:35:31 -04:00
namespace ReCodeIt.Models;
public class CrossCompilerProjectModel
{
public string OriginalAssemblyPath { get; set; }
public string OriginalAssemblyHash { get; set; }
public string VisualStudioSolutionDirectory { get; set; }
public string SolutionPath { get; set; }
public string ReCodeItProjectDir { get; set; }
public string RemappedAssemblyPath { get; set; }
public string RemappedAssemblyHash { get; set; }
/// <summary>
/// Key: Remapped name, value: old name
/// </summary>
public Dictionary<string, string> ChangedTypes { get; set; } = [];
/// <summary>
/// Remap models used on this project
/// </summary>
public List<RemapModel> RemapModels { get; set; } = [];
}