aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Authentication/AuthenticationResult.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2013-02-20 17:10:49 -0800
committerLuke <luke.pulverenti@gmail.com>2013-02-20 17:10:49 -0800
commit845554722efaed872948a9e0f7202e3ef52f1b6e (patch)
tree534ab2d11fe4824ed303bb01e885b330631b657e /MediaBrowser.Model/Authentication/AuthenticationResult.cs
parent2f142263f080f7b012a0ec2095d350ccf75b49b7 (diff)
parent14bbb6804718ef78a8118fe750896ba679e3b6cb (diff)
Merge pull request #1 from MediaBrowser/Repo
Repo
Diffstat (limited to 'MediaBrowser.Model/Authentication/AuthenticationResult.cs')
-rw-r--r--MediaBrowser.Model/Authentication/AuthenticationResult.cs11
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; }
+ }
+}