aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/ILoginService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/Interfaces/ILoginService.cs')
-rw-r--r--OpenSim/Services/Interfaces/ILoginService.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/ILoginService.cs b/OpenSim/Services/Interfaces/ILoginService.cs
index 5397b10..0f82de5 100644
--- a/OpenSim/Services/Interfaces/ILoginService.cs
+++ b/OpenSim/Services/Interfaces/ILoginService.cs
@@ -29,11 +29,14 @@ using System;
29using System.Collections; 29using System.Collections;
30using System.Collections.Generic; 30using System.Collections.Generic;
31 31
32using OpenMetaverse.StructuredData;
33
32namespace OpenSim.Services.Interfaces 34namespace OpenSim.Services.Interfaces
33{ 35{
34 public abstract class LoginResponse 36 public abstract class LoginResponse
35 { 37 {
36 public abstract Hashtable ToHashtable(); 38 public abstract Hashtable ToHashtable();
39 public abstract OSD ToOSDMap();
37 } 40 }
38 41
39 public abstract class FailedLoginResponse : LoginResponse 42 public abstract class FailedLoginResponse : LoginResponse