コード例 #1
0
ファイル: ThirdPartyTokens.cs プロジェクト: Coflnet/cloud
 public Oauth2Token(CoflnetUser user, string token, IThirdPartyApi party, DateTime expiration, string refreshToken) : base(user, token, party)
 {
     this.expiration   = expiration;
     this.refreshToken = refreshToken;
 }
コード例 #2
0
ファイル: ThirdPartyTokens.cs プロジェクト: Coflnet/cloud
 public ThirdPartyToken(CoflnetUser user, string token, IThirdPartyApi party)
 {
     this.user  = user;
     this.token = token;
     this.party = party;
 }