mod reordering, deleting, conflict resolution, some other fixes

This commit is contained in:
Adam 2020-12-25 22:50:31 +11:00
parent fbb39a8626
commit 7f1fd95a78
10 changed files with 605 additions and 203 deletions

View file

@ -0,0 +1,15 @@
using Newtonsoft.Json;
using Penumbra.Mods;
namespace Penumbra.Models
{
public class ModInfo
{
public string FolderName { get; set; }
public bool Enabled { get; set; }
public int Priority { get; set; }
[JsonIgnore]
public ResourceMod Mod { get; set; }
}
}