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

16 lines
389 B
C#
Raw Normal View History

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