Updated zoom level

This commit is contained in:
Florian Rappl
2026-09-04 16:03:43 +02:00
parent 703cf8f880
commit 98c72af3d6
8 changed files with 109 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
namespace ElectronNET.API.Entities
{
/// <summary>
/// The direction of a zoom change triggered by the user.
/// </summary>
public enum ZoomDirection
{
/// <summary>
/// The user zoomed in.
/// </summary>
In,
/// <summary>
/// The user zoomed out.
/// </summary>
Out
}
}