SuzuMagnifier/source/Dtos/SavedOptions.cs
Ray a382ab8dad Added always-on-top to saved settings
Added view-help and about dialog
2026-06-28 02:04:02 +01:00

26 lines
513 B
C#

namespace SuzuMagnifier.Dtos
{
public class SavedOptions
{
public int Version { get; set; } = 1;
public bool AutoStart { get; set; }
public bool HighQuality { get; set; }
public int ZoomFactor { get; set; }
public int UpdateFrequency { get; set; }
public bool ShowCrosshair { get; set; }
public int CrosshairSize { get; set; }
public Color CrosshairColour { get; set; }
public bool ShowAlwaysOnTop { get; set; }
}
}