2 // OAuthTokenModel.swift
5 // Created by Pawel Dabrowski on 09/07/2018.
6 // Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
11 class OAuthTokenModel {
13 init(token: String, tokenSecret: String) {
15 self.tokenSecret = tokenSecret
21 func isValid() -> Bool{
22 return tokenSecret.count > 0 && token.count > 0