jellyfin/MediaBrowser.Model/Authentication/AuthenticationResult.cs
LukePulverenti Luke Pulverenti luke pulverenti faead199a5 Moved AuthenticationResult
2012-09-08 11:10:26 -04:00

11 lines
216 B
C#

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