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