using System.Collections.Generic; namespace Impostor.Server.Plugins { public class PluginConfig { public List Paths { get; set; } = new List(); public List LibraryPaths { get; set; } = new List(); } }