using System; namespace SUISS.Cloud { public interface IAccessToken { string Scope { get; } DateTime Expires { get; } string Token { get; } bool HasExpired { get; } } }