Files
Wino-Mail/Wino.Core.Domain/Interfaces/IFontService.cs
2025-02-16 11:54:23 +01:00

16 lines
389 B
C#

using System.Collections.Generic;
namespace Wino.Core.Domain.Interfaces;
/// <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();
}