-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaveFile.cs
More file actions
34 lines (31 loc) · 928 Bytes
/
saveFile.cs
File metadata and controls
34 lines (31 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
namespace SimplePasswordManager
{
/// <summary>
/// Represents the structure of the configuration save file.
/// </summary>
internal class SaveFile
{
/// <summary>
/// Gets or sets the configuration settings.
/// </summary>
public Config config { get; set; }
/// <summary>
/// Gets or sets the version of the application.
/// </summary>
public string version { get; set; }
}
/// <summary>
/// Represents the configuration settings stored in the save file.
/// </summary>
internal class Config
{
/// <summary>
/// Gets or sets whether this is the first load of the application.
/// </summary>
public bool isFirstLoad { get; set; }
/// <summary>
/// Gets or sets whether debug mode is enabled.
/// </summary>
public bool debugMode { get; set; }
}
}