13 lines
220 B
C#
13 lines
220 B
C#
|
using System;
|
|||
|
using ProtoBuf;
|
|||
|
|
|||
|
namespace MediaBrowser.Model.DTO
|
|||
|
{
|
|||
|
[ProtoContract]
|
|||
|
public class AuthenticationResult
|
|||
|
{
|
|||
|
[ProtoMember(1)]
|
|||
|
public bool Success { get; set; }
|
|||
|
}
|
|||
|
}
|