From 5ebb929cb8e837fc99bfab96d56df333027eb03f Mon Sep 17 00:00:00 2001 From: Ionite Date: Mon, 26 Jun 2023 17:28:07 -0400 Subject: [PATCH] Add Settings version property --- StabilityMatrix/Models/Settings.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/StabilityMatrix/Models/Settings.cs b/StabilityMatrix/Models/Settings.cs index 9beb1bc7..5d3a06a3 100644 --- a/StabilityMatrix/Models/Settings.cs +++ b/StabilityMatrix/Models/Settings.cs @@ -10,6 +10,7 @@ namespace StabilityMatrix.Models; public class Settings { + public int? Version { get; set; } = 1; public bool FirstLaunchSetupComplete { get; set; } public string? Theme { get; set; } public WindowBackdropType? WindowBackdropType { get; set; }