* 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
12 lines
198 B
C#
12 lines
198 B
C#
using System;
|
|
using OpenMetaverse.StructuredData;
|
|
|
|
namespace Simian
|
|
{
|
|
public interface IPersistable
|
|
{
|
|
LLSD Serialize();
|
|
void Deserialize(LLSD serialized);
|
|
}
|
|
}
|