using System.Collections.Generic; using NvAPIWrapper.Native.Mosaic.Structures; namespace NvAPIWrapper.Native.Interfaces.Mosaic { /// /// Interface for all SupportedTopologiesInfo structures /// public interface ISupportedTopologiesInfo { /// /// List of per display settings possible /// IEnumerable DisplaySettings { get; } /// /// List of supported topologies with only brief details /// IEnumerable TopologyBriefs { get; } } }