mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-05 16:03:21 +01:00
12 lines
220 B
C#
12 lines
220 B
C#
using System;
|
|
using ProtoBuf;
|
|
|
|
namespace MediaBrowser.Model.DTO
|
|
{
|
|
[ProtoContract]
|
|
public class AuthenticationResult
|
|
{
|
|
[ProtoMember(1)]
|
|
public bool Success { get; set; }
|
|
}
|
|
}
|