blob: 60383fb3235da07cbe3c8cffd25ef0e7d8712e3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using libsecondlife;
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Framework
{
public class RegionBanListItem
{
public LLUUID regionUUID = LLUUID.Zero;
public LLUUID bannedUUID = LLUUID.Zero;
public string bannedIP = string.Empty;
public string bannedIPHostMask = string.Empty;
public RegionBanListItem()
{
}
}
}
|