Skip to content

Commit

Permalink
defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpannella committed Sep 10, 2022
1 parent 861ad12 commit 5200e9b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions models/Settings/Firmware.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@ namespace pannella.analoguepocket;
public class Firmware
{
public string version { get; set; }

public Firmware()
{
version = "";
}
}
5 changes: 5 additions & 0 deletions models/Settings/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ public class Settings
public Firmware firmware { get; set; }
public Config config { get; set; }
public Dictionary<string, CoreSettings> coreSettings { get; set; }

public Settings()
{
firmware = new Firmware();
}
}

0 comments on commit 5200e9b

Please sign in to comment.