网站首页 网站源码
using Dpz.Core.Public.Entity.Icons;
namespace Dpz.Core.Service.RepositoryService;
public interface IMaterialIconService : ICacheService
{
Task<List<LanguageIcons>> GetLanguageIconsAsync();
Task<List<FileIcons>> GetFileIconsAsync();
Task<List<FolderIcons>> GetFolderIconsAsync();
}