blob: ce492b60efa2099810549574732ce29948ec4165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using ProtoBuf;
namespace MediaBrowser.Model.DTO
{
[ProtoContract]
public class AuthenticationResult
{
[ProtoMember(1)]
public bool Success { get; set; }
}
}
|