这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
namespace ChainSafe.Gaming.Marketplace.Interfaces
using System;

namespace ChainSafe.Gaming.Marketplace
{
/// <summary>
/// Marketplace auth interface.
/// </summary>
public interface IMarketplaceAuth
{
void RefreshExpiredToken();
string BearerToken { get; }
DateTime BearerTokenExpires { get; }
string RefreshToken { get; }
DateTime RefreshTokenExpires { get; }

void InitializeConfig(object sender, EventManagerMarketplace.MarketplaceAuthSystemConfigEventArgs marketplaceAuthSystemManagerConfigEventArgs);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class EmailRequestPayload
{
public string email;
}

/// <summary>
/// Payload class for authorization post request.
/// </summary>
Expand All @@ -21,7 +21,7 @@ public class AuthCodePayload
public string email;
public string nonce;
}

/// <summary>
/// Payload class for login request.
/// </summary>
Expand Down
Loading