using System; namespace HeuristicLab.PluginInfrastructure { [Serializable] public class AssemblyInfo { /// /// Path to the assembly file. /// public UniPath Path { get; set; } = null; /// /// Fullname of the assembly. /// public string Name { get; set; } } }