jellyfin/MediaBrowser.Model/Entities/AuthenticationResult.cs
LukePulverenti Luke Pulverenti luke pulverenti 8fc828361e Updated authentication
2012-09-07 12:17:39 -04:00

11 lines
210 B
C#

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