diff --git a/ScreenCapture.NET/Model/Display.cs b/ScreenCapture.NET/Model/Display.cs index 2dc8865..cd97780 100644 --- a/ScreenCapture.NET/Model/Display.cs +++ b/ScreenCapture.NET/Model/Display.cs @@ -31,6 +31,9 @@ public readonly struct Display /// public int Height { get; } + /// + /// Gets the rotation of the . + /// public Rotation Rotation { get; } /// @@ -49,6 +52,7 @@ public readonly struct Display /// The name of the . /// The with of the . /// The height of the . + /// The rotation of the . /// The this is connected to. public Display(int index, string deviceName, int width, int height, Rotation rotation, GraphicsCard graphicsCard) { diff --git a/ScreenCapture.NET/Model/Rotation.cs b/ScreenCapture.NET/Model/Rotation.cs index 451add0..8a0aabd 100644 --- a/ScreenCapture.NET/Model/Rotation.cs +++ b/ScreenCapture.NET/Model/Rotation.cs @@ -1,5 +1,8 @@ namespace ScreenCapture.NET; +/// +/// Represents a display-rotation. +/// public enum Rotation { None = 0,