using MediaBrowser.IsoMounter;
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();
            list.Add(typeof(LinuxIsoManager).Assembly);
            return list;
        }
    }
}