Change PresenceData to PresenceInfo to remove a naming conflict in the

OpenSim.Data namespace
This commit is contained in:
Melanie
2009-11-18 06:19:39 +00:00
parent 1afd347615
commit 0cd3bf074a
3 changed files with 15 additions and 2 deletions

View File

@@ -31,7 +31,15 @@ using OpenMetaverse;
namespace OpenSim.Services.Interfaces
{
public class PresenceInfo
{
public UUID PrincipalID;
public UUID RegionID;
public Dictionary<string, object> Data;
}
public interface IPresenceService
{
bool Report(PresenceInfo presence);
}
}