using System;
using System.Collections.Generic;
using NvAPIWrapper.Native.Display.Structures;
namespace NvAPIWrapper.Native.Interfaces.Display
{
///
/// Interface for all PathInfo structures
///
public interface IPathInfo : IDisposable
{
///
/// Identifies sourceId used by Windows CCD. This can be optionally set.
///
uint SourceId { get; }
///
/// Contains information about the source mode
///
SourceModeInfo SourceModeInfo { get; }
///
/// Contains information about path targets
///
IEnumerable TargetsInfo { get; }
}
}