missing file

This commit is contained in:
UbitUmarov
2020-08-28 23:41:34 +01:00
parent 90bd42ddc0
commit 4b91a93389
2 changed files with 9 additions and 9 deletions

View File

@@ -33,13 +33,15 @@ namespace OpenSim.Framework
{
public class UserData
{
public UUID Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string HomeURL { get; set; }
public Dictionary<string, object> ServerURLs { get; set; }
public bool IsUnknownUser { get; set; }
public bool HasGridUserTried { get; set; }
public UUID Id;
public string FirstName;
public string LastName;
public string HomeURL;
public Dictionary<string, object> ServerURLs;
public bool IsUnknownUser;
public bool HasGridUserTried;
public bool IsLocal;
public double LastWebFail = -1;
}
public interface IPeople

View File

@@ -33,8 +33,6 @@ using OpenMetaverse;
//namespace OpenSim.Services.Interfaces
namespace OpenSim.Framework
{
/// <summary>
/// This maintains the relationship between a UUID and a user name.
/// </summary>