mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-26 10:29:20 +01:00
15 lines
No EOL
317 B
C#
15 lines
No EOL
317 B
C#
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; }
|
|
}
|
|
} |