-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleSettings.cs
38 lines (34 loc) · 1.15 KB
/
SimpleSettings.cs
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
35
36
37
38
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.Json;
namespace TAC_Grabber
{
public class SimpleSettings
{
public Dictionary<string, int> LastValues { get; set; } = new Dictionary<string, int>();
public int[] ProxiesPort { get; set; } = Enumerable.Range(8181, 20).ToArray();
#region serialize
private const string settingsFileName = "settings.json";
private static readonly JsonSerializerOptions jsonSerializerOptions = new JsonSerializerOptions
{
WriteIndented = true,
AllowTrailingCommas=true
};
public void Save()
{
var json = JsonSerializer.Serialize<SimpleSettings>(this,jsonSerializerOptions);
File.WriteAllText(settingsFileName, json);
}
public static SimpleSettings Load()
{
try
{
var json = File.ReadAllText(settingsFileName);
return JsonSerializer.Deserialize<SimpleSettings>(json, jsonSerializerOptions);
}
catch { return new SimpleSettings(); }
}
#endregion
}
}