using System; using System.Collections.Generic; namespace Volo.Abp.AspNetCore.Mvc.UI.Bundling { public interface IBundleCache { List GetFiles(string bundleName, Func> factory); } }