Files
archived-g-helper/app/NvAPIWrapper/Native/Interfaces/GPU/IEDID.cs
2023-05-06 14:40:52 +02:00

13 lines
301 B
C#

namespace NvAPIWrapper.Native.Interfaces.GPU
{
/// <summary>
/// Interface for all EDID structures
/// </summary>
public interface IEDID
{
/// <summary>
/// Gets whole or a part of the EDID data
/// </summary>
byte[] Data { get; }
}
}