diff options
Diffstat (limited to 'OpenSim/Framework/General/Configuration/ConfigurationOption.cs')
-rw-r--r-- | OpenSim/Framework/General/Configuration/ConfigurationOption.cs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Configuration/ConfigurationOption.cs b/OpenSim/Framework/General/Configuration/ConfigurationOption.cs new file mode 100644 index 0000000..15da1aa --- /dev/null +++ b/OpenSim/Framework/General/Configuration/ConfigurationOption.cs | |||
@@ -0,0 +1,34 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Configuration | ||
6 | { | ||
7 | public class ConfigurationOption | ||
8 | { | ||
9 | public enum ConfigurationTypes | ||
10 | { | ||
11 | TYPE_STRING, | ||
12 | TYPE_UINT16, | ||
13 | TYPE_UINT32, | ||
14 | TYPE_UINT64, | ||
15 | TYPE_INT16, | ||
16 | TYPE_INT32, | ||
17 | TYPE_INT64, | ||
18 | TYPE_IP_ADDRESS, | ||
19 | TYPE_CHARACTER, | ||
20 | TYPE_BOOLEAN, | ||
21 | TYPE_BYTE, | ||
22 | TYPE_LLUUID, | ||
23 | TYPE_LLVECTOR3, | ||
24 | TYPE_FLOAT, | ||
25 | TYPE_DOUBLE | ||
26 | }; | ||
27 | |||
28 | public string configurationKey = ""; | ||
29 | public string configurationQuestion = ""; | ||
30 | public string configurationDefault = ""; | ||
31 | |||
32 | public ConfigurationTypes configurationType = ConfigurationTypes.TYPE_STRING; | ||
33 | } | ||
34 | } | ||