jellyfin/MediaBrowser.Model/Authentication/AuthenticationResult.cs

12 lines
216 B
C#
Raw Normal View History

2012-09-07 16:17:39 +00:00
using ProtoBuf;
2012-09-06 18:38:29 +00:00
2012-09-08 15:10:26 +00:00
namespace MediaBrowser.Model.Authentication
2012-09-06 18:38:29 +00:00
{
[ProtoContract]
public class AuthenticationResult
{
[ProtoMember(1)]
public bool Success { get; set; }
}
}