Files
se-launcher/PluginLoader/Profile.cs

24 lines
430 B
C#

namespace PluginLoader;
public class Profile
{
public Profile()
{
}
public Profile(string name, string[] plugins)
{
Key = Guid.NewGuid().ToString();
Name = name;
Plugins = plugins;
}
// Unique key of the profile
public string Key { get; set; }
// Name of the profile
public string Name { get; set; }
// Plugin IDs
public string[] Plugins { get; set; }
}