Files
Wino-Mail/Wino.Core.Domain/Interfaces/IFontService.cs

17 lines
435 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System.Collections.Generic;
namespace Wino.Core.Domain.Interfaces
2024-04-18 01:44:37 +02:00
{
/// <summary>
/// Service to access available fonts.
/// </summary>
public interface IFontService
{
/// <summary>
/// Get available fonts. Default + installed system fonts.
/// Fonts initialized only once. To refresh fonts, restart the application.
/// </summary>
List<string> GetFonts();
}
2024-04-18 01:44:37 +02:00
}