using Abp.Dependency;
namespace IwbZero.Storage
{
public interface ITempFileCacheManager : ITransientDependency
{
void SetFile(string token, byte[] content);
///
///
///
///
///
/// 过期时间
void SetFile(string token, byte[] content, int min);
byte[] GetFile(string token);
}
}