Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/AuthenticationResult.cs

12 lines
210 B
C#
Raw Normal View History

2012-09-07 12:17:39 -04:00
using ProtoBuf;
2012-09-06 14:38:29 -04:00
2012-09-07 12:17:39 -04:00
namespace MediaBrowser.Model.Entities
2012-09-06 14:38:29 -04:00
{
[ProtoContract]
public class AuthenticationResult
{
[ProtoMember(1)]
public bool Success { get; set; }
}
}