mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
make lots of properties virtual, which lets nhibernate do
some proxy object optimizations.
This commit is contained in:
@@ -66,37 +66,37 @@ namespace OpenSim.Framework
|
||||
/// </summary>
|
||||
private ushort _version;
|
||||
|
||||
public string Name
|
||||
public virtual string Name
|
||||
{
|
||||
get { return _name; }
|
||||
set { _name = value; }
|
||||
}
|
||||
|
||||
public LLUUID Owner
|
||||
public virtual LLUUID Owner
|
||||
{
|
||||
get { return _owner; }
|
||||
set { _owner = value; }
|
||||
}
|
||||
|
||||
public LLUUID ParentID
|
||||
public virtual LLUUID ParentID
|
||||
{
|
||||
get { return _parentID; }
|
||||
set { _parentID = value; }
|
||||
}
|
||||
|
||||
public LLUUID ID
|
||||
public virtual LLUUID ID
|
||||
{
|
||||
get { return _id; }
|
||||
set { _id = value; }
|
||||
}
|
||||
|
||||
public short Type
|
||||
public virtual short Type
|
||||
{
|
||||
get { return _type; }
|
||||
set { _type = value; }
|
||||
}
|
||||
|
||||
public ushort Version
|
||||
public virtual ushort Version
|
||||
{
|
||||
get { return _version; }
|
||||
set { _version = value; }
|
||||
|
||||
Reference in New Issue
Block a user