From faead199a59b084a9197b394e2214c6cd2f9b9e4 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Sat, 8 Sep 2012 11:10:26 -0400 Subject: Moved AuthenticationResult --- MediaBrowser.Model/Authentication/AuthenticationResult.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 MediaBrowser.Model/Authentication/AuthenticationResult.cs (limited to 'MediaBrowser.Model/Authentication/AuthenticationResult.cs') diff --git a/MediaBrowser.Model/Authentication/AuthenticationResult.cs b/MediaBrowser.Model/Authentication/AuthenticationResult.cs new file mode 100644 index 0000000000..ebc253172d --- /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; } + } +} -- cgit v1.2.3