* Added Utils.SHA1() git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2321 52acb1d6-8a22-11de-b505-999d5b087335
12 lines
196 B
C#
12 lines
196 B
C#
using System;
|
|
using OpenMetaverse.StructuredData;
|
|
|
|
namespace Simian
|
|
{
|
|
public interface IPersistable
|
|
{
|
|
OSD Serialize();
|
|
void Deserialize(OSD serialized);
|
|
}
|
|
}
|