I should actually be working
This commit is contained in:
19
MareSynchronos/PenumbraMod/DefaultMod.cs
Normal file
19
MareSynchronos/PenumbraMod/DefaultMod.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MareSynchronos.PenumbraMod
|
||||
{
|
||||
[JsonObject(MemberSerialization.OptOut)]
|
||||
internal class DefaultMod
|
||||
{
|
||||
public string Name { get; set; } = "Default";
|
||||
public int Priority { get; set; } = 0;
|
||||
public Dictionary<string, string> Files { get; set; } = new();
|
||||
public Dictionary<string, string> FileSwaps { get; set; } = new();
|
||||
public List<string> Manipulations { get; set; } = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user