using System.Collections.Generic; namespace Wino.Core.Domain.Interfaces { /// /// Service to access available fonts. /// public interface IFontService { /// /// Get available fonts. Default + installed system fonts. /// Fonts initialized only once. To refresh fonts, restart the application. /// List GetFonts(); } }