2
0

AuthenticationResult.cs 220 B

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