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