11 lines
213 B
C#
11 lines
213 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace AibisDream.Framework
|
|
{
|
|
public interface ITypographyProfileLoader
|
|
{
|
|
Task<TypographyProfile> LoadAsync(string key);
|
|
void Release(string key);
|
|
}
|
|
}
|