using System.Collections.Generic; using System.Reflection; namespace MediaBrowser.ServerApplication.Native { /// /// Class Assemblies /// public static class Assemblies { /// /// Gets the assemblies with parts. /// /// List{Assembly}. public static List GetAssembliesWithParts() { var list = new List(); return list; } } }