AuthenticationResult.cs 216 B

1234567891011
  1. using ProtoBuf;
  2. namespace MediaBrowser.Model.Authentication
  3. {
  4. [ProtoContract]
  5. public class AuthenticationResult
  6. {
  7. [ProtoMember(1)]
  8. public bool Success { get; set; }
  9. }
  10. }