20 lines
410 B
C#
20 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Domain.Impl
|
|
{
|
|
public interface ICacheDomain : IScopedDependency
|
|
{
|
|
Task<string> GetValueParameter(string key);
|
|
|
|
Task<List<SsoUserTokenInfo>> GetTokens();
|
|
|
|
Task AddToken(SsoUserTokenInfo token);
|
|
|
|
Task<int> GetEarlyWarningValue();
|
|
}
|
|
}
|