Initial Code
This commit is contained in:
18
ModRegistry/ModEntry.cs
Normal file
18
ModRegistry/ModEntry.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
using VMM.ModRegistry.Settings;
|
||||
|
||||
namespace VMM.ModRegistry
|
||||
{
|
||||
public class ModEntry
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Version { get; set; }
|
||||
public string Author { get; set; }
|
||||
public ModSettings Settings { get; set; }
|
||||
|
||||
internal Assembly assembly { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user