Fox the InventoryItem.CreatorIdAsUuid property

0.6.5-rc1
Melanie Thielker 2009-05-04 21:17:40 +00:00
parent 7f1c393bc3
commit ebb8111f6c
1 changed files with 13 additions and 1 deletions

View File

@ -67,7 +67,19 @@ namespace OpenSim.Framework
/// <value>
/// The creator of this item expressed as a UUID
/// </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>
/// The description of the inventory item (must be less than 64 characters)