mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:08:29 +01:00
11 lines
216 B
C#
11 lines
216 B
C#
using ProtoBuf;
|
|
|
|
namespace MediaBrowser.Model.Authentication
|
|
{
|
|
[ProtoContract]
|
|
public class AuthenticationResult
|
|
{
|
|
[ProtoMember(1)]
|
|
public bool Success { get; set; }
|
|
}
|
|
}
|