forked from tesu/PennyPincher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfiguration.cs
51 lines (33 loc) · 1.13 KB
/
Configuration.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
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using Dalamud.Configuration;
namespace PennyPincher
{
[Serializable]
public class Configuration : IPluginConfiguration
{
/// <inheritdoc/>
public int Version { get; set; } = 2;
public bool alwaysOn { get; set; } = false;
public int delta { get; set; } = 1;
public bool hq { get; set; } = false;
public int min { get; set; } = 1;
public int mod { get; set; } = 1;
public int multiple { get; set; } = 1;
public bool verbose { get; set; } = true;
}
[Serializable]
public class OldConfiguration : IPluginConfiguration
{
/// <inheritdoc/>
public int Version { get; set; } = 1;
public bool alwaysOn { get; set; } = false;
public bool alwaysHq { get; set; } = false;
public int delta { get; set; } = 1;
public bool hq { get; set; } = true;
public int min { get; set; } = 1;
public int mod { get; set; } = 1;
public int multiple { get; set; } = 1;
public bool smart { get; set; } = true;
public bool verbose { get; set; } = true;
}
}