mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 16:25:28 +03:00
12 lines
210 B
C#
12 lines
210 B
C#
using ProtoBuf;
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
[ProtoContract]
|
|
public class AuthenticationResult
|
|
{
|
|
[ProtoMember(1)]
|
|
public bool Success { get; set; }
|
|
}
|
|
}
|