aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/AuthenticationResult.cs
blob: 312e71f3883f0c2d5eee7c8ee237f60b566924f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
using ProtoBuf;

namespace MediaBrowser.Model.Entities
{
    [ProtoContract]
    public class AuthenticationResult
    {
        [ProtoMember(1)]
        public bool Success { get; set; }
    }
}