mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-30 12:23:41 +01:00
mod reordering, deleting, conflict resolution, some other fixes
This commit is contained in:
parent
fbb39a8626
commit
7f1fd95a78
10 changed files with 605 additions and 203 deletions
15
Penumbra/Models/ModInfo.cs
Normal file
15
Penumbra/Models/ModInfo.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue