// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System.Collections.Generic;
namespace SixLabors.Fonts {
///
/// Represents a readonly collection of Operating System fonts.
///
public interface IReadOnlySystemFontCollection : IReadOnlyFontCollection
{
///
///
/// Gets the collection of Operating System directories that were searched for font families.
///
///
public IEnumerable SearchDirectories { get; }
}
}