using NvAPIWrapper.Native.Display.Structures;
namespace NvAPIWrapper.Native.Interfaces.Display
{
///
/// Interface for all PathTargetInfo structures
///
public interface IPathTargetInfo
{
///
/// Contains extra information. NULL for Non-NVIDIA Display.
///
PathAdvancedTargetInfo? Details { get; }
///
/// Display identification
///
uint DisplayId { get; }
}
}