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; } }