Move enums

This commit is contained in:
Cj 2024-06-12 00:07:44 -04:00
parent dcae6663b4
commit 5ccf9f5e25
5 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
namespace AssemblyRemapper.Models;
namespace AssemblyRemapper.Enums;
internal enum ELogLevel
{

View File

@ -1,4 +1,4 @@
namespace AssemblyRemapper.Models;
namespace AssemblyRemapper.Enums;
internal enum EMatchResult
{

View File

@ -6,7 +6,7 @@ namespace AssemblyRemapper.Models;
internal class ScoringModel
{
public string ProposedNewName { get; set; }
public Remap Remap { get; set; }
public RemapModel Remap { get; set; }
public int Score { get; set; } = 0;
public TypeDefinition Definition { get; set; }

View File

@ -1,4 +1,5 @@
using AssemblyRemapper.Models;
using AssemblyRemapper.Enums;
using AssemblyRemapper.Models;
using AssemblyRemapper.Utils;
using Mono.Cecil;

View File

@ -1,4 +1,5 @@
using AssemblyRemapper.Models;
using AssemblyRemapper.Enums;
using AssemblyRemapper.Models;
using Mono.Cecil;
using Mono.Cecil.Rocks;