You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
498 B
19 lines
498 B
using System.Collections.Generic;
|
|
using AuroraDesk.Core.Entities;
|
|
|
|
namespace AuroraDesk.Core.Interfaces;
|
|
|
|
/// <summary>
|
|
/// 图标服务接口
|
|
/// </summary>
|
|
public interface IIconService
|
|
{
|
|
/// <summary>
|
|
/// 获取所有图标项
|
|
/// 执行同步操作(枚举值、创建对象,操作很快)。
|
|
/// 如果缓存已就绪,立即返回;否则同步创建并缓存。
|
|
/// </summary>
|
|
/// <returns>图标项集合</returns>
|
|
IEnumerable<HeroIconItem> GetIcons();
|
|
}
|
|
|
|
|