SuzuMagnifier/source/Dtos/SavedOptions.cs
Ray 5fa20668db Added format type to save options
Changed crosshair size to be used instead of show
Added readonly config file support
2026-06-28 13:02:58 +01:00

30 lines
631 B
C#

namespace SuzuMagnifier.Dtos
{
public class SavedOptions
{
public int Version { get; set; } = 1;
public string Format { get; set; } = "suzumagnifier";
public bool ReadOnly { get; set; } = false;
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 string? CrosshairColour { get; set; }
public bool ShowAlwaysOnTop { get; set; }
}
}