* Added ability to set Composer font * Added missing translations and refactoring * Remove unused methods * Small fixes
17 lines
435 B
C#
17 lines
435 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();
|
|
}
|
|
}
|