VLCNetworkServerLoginInformation.h 938 B

12345678910111213141516171819202122232425
  1. /*****************************************************************************
  2. * VLCNetworkServerLoginInformation.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <Foundation/Foundation.h>
  13. #import "VLCLocalNetworkService-Protocol.h"
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface VLCNetworkServerLoginInformation : NSObject <VLCNetworkServerLoginInformation>
  16. @property (nonatomic, nullable) NSString *username;
  17. @property (nonatomic, nullable) NSString *password;
  18. @property (nonatomic) NSString *address;
  19. @property (nonatomic) NSNumber *port;
  20. @property (nonatomic) NSString *protocolIdentifier;
  21. @end
  22. NS_ASSUME_NONNULL_END