Files
libremetaverse/Programs/Simian/Interfaces/IPersistable.cs
John Hurliman 3e5fcb7fab * Moving conversion functions from Helpers to Utils (in OpenMetaverseTypes)
* Added GetLLSD() and FromLLSD() to Permissions
* Started on inventory persistence for Simian

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2267 52acb1d6-8a22-11de-b505-999d5b087335
2008-10-06 22:34:38 +00:00

12 lines
198 B
C#

using System;
using OpenMetaverse.StructuredData;
namespace Simian
{
public interface IPersistable
{
LLSD Serialize();
void Deserialize(LLSD serialized);
}
}