* Adding IAuthenticationProvider and IAccountProvider interfaces to let extensions handle authenticating logins and creating/removing/storing account information git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2238 52acb1d6-8a22-11de-b505-999d5b087335
14 lines
235 B
C#
14 lines
235 B
C#
using System;
|
|
using OpenMetaverse.StructuredData;
|
|
|
|
namespace Simian
|
|
{
|
|
public interface IPersistable
|
|
{
|
|
string StoreName { get; }
|
|
|
|
LLSD Serialize();
|
|
void Deserialize(LLSD serialized);
|
|
}
|
|
}
|