blob: 9ea4ae8bc1c18efa0b5d8289b6395e396a71b44f (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
namespace OpenGrid.Framework.Communications.UserServer
{
public class UserCommsManagerBase
{
public UserCommsManagerBase()
{
}
public virtual UserProfileData GetUserProfile(string name)
{
return null;
}
public virtual UserProfileData GetUserProfile(LLUUID avatar_id)
{
return null;
}
}
public class UserProfileData
{
public UserProfileData()
{
}
}
}
|