diff options
Diffstat (limited to 'MediaBrowser.Model/Authentication/AuthenticationResult.cs')
| -rw-r--r-- | MediaBrowser.Model/Authentication/AuthenticationResult.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Authentication/AuthenticationResult.cs b/MediaBrowser.Model/Authentication/AuthenticationResult.cs new file mode 100644 index 000000000..ebc253172 --- /dev/null +++ b/MediaBrowser.Model/Authentication/AuthenticationResult.cs @@ -0,0 +1,11 @@ +using ProtoBuf;
+
+namespace MediaBrowser.Model.Authentication
+{
+ [ProtoContract]
+ public class AuthenticationResult
+ {
+ [ProtoMember(1)]
+ public bool Success { get; set; }
+ }
+}
|
