diff options
Diffstat (limited to 'OpenSim/Framework/RegionBanListItem.cs')
-rw-r--r-- | OpenSim/Framework/RegionBanListItem.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionBanListItem.cs b/OpenSim/Framework/RegionBanListItem.cs new file mode 100644 index 0000000..60383fb --- /dev/null +++ b/OpenSim/Framework/RegionBanListItem.cs | |||
@@ -0,0 +1,20 @@ | |||
1 | using libsecondlife; | ||
2 | using System; | ||
3 | using System.Collections.Generic; | ||
4 | using System.Text; | ||
5 | |||
6 | namespace OpenSim.Framework | ||
7 | { | ||
8 | public class RegionBanListItem | ||
9 | { | ||
10 | public LLUUID regionUUID = LLUUID.Zero; | ||
11 | public LLUUID bannedUUID = LLUUID.Zero; | ||
12 | public string bannedIP = string.Empty; | ||
13 | public string bannedIPHostMask = string.Empty; | ||
14 | |||
15 | public RegionBanListItem() | ||
16 | { | ||
17 | |||
18 | } | ||
19 | } | ||
20 | } | ||