Fox the InventoryItem.CreatorIdAsUuid property
parent
7f1c393bc3
commit
ebb8111f6c
|
@ -67,7 +67,19 @@ namespace OpenSim.Framework
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The creator of this item expressed as a UUID
|
/// The creator of this item expressed as a UUID
|
||||||
/// </value>
|
/// </value>
|
||||||
public UUID CreatorIdAsUuid { get; private set; }
|
public UUID CreatorIdAsUuid
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
UUID uuid = UUID.Zero;
|
||||||
|
UUID.TryParse(m_creatorId, out uuid);
|
||||||
|
return uuid;
|
||||||
|
}
|
||||||
|
private set
|
||||||
|
{
|
||||||
|
m_creatorId = value.ToString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The description of the inventory item (must be less than 64 characters)
|
/// The description of the inventory item (must be less than 64 characters)
|
||||||
|
|
Loading…
Reference in New Issue