mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
13 lines
301 B
C#
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; }
|
|
}
|
|
} |