11 lines
203 B
C#
11 lines
203 B
C#
|
|
using System;
|
||
|
|
using OpenMetaverse;
|
||
|
|
|
||
|
|
namespace Simian
|
||
|
|
{
|
||
|
|
public interface IAuthenticationProvider
|
||
|
|
{
|
||
|
|
UUID Authenticate(string firstName, string lastName, string password);
|
||
|
|
}
|
||
|
|
}
|