From 3538789e46d3332a2f20cd6b3db13b2aa9fbe475 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Thu, 6 Sep 2012 14:38:29 -0400 Subject: Added User authentication --- MediaBrowser.Model/DTO/AuthenticationResult.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 MediaBrowser.Model/DTO/AuthenticationResult.cs (limited to 'MediaBrowser.Model/DTO/AuthenticationResult.cs') diff --git a/MediaBrowser.Model/DTO/AuthenticationResult.cs b/MediaBrowser.Model/DTO/AuthenticationResult.cs new file mode 100644 index 0000000000..ce492b60ef --- /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; } + } +} -- cgit v1.2.3