jellyfin/MediaBrowser.Model/Entities/AuthenticationResult.cs

12 lines
210 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-07 16:17:39 +00:00
namespace MediaBrowser.Model.Entities
2012-09-06 18:38:29 +00:00
{
[ProtoContract]
public class AuthenticationResult
{
[ProtoMember(1)]
public bool Success { get; set; }
}
}