ChouBox/Utile/HuanMeng.DotNetCore/CacheHelper/Contract/ICacheClearData.cs
2025-04-23 19:20:23 +08:00

21 lines
408 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HuanMeng.DotNetCore.CacheHelper.Contract
{
/// <summary>
/// 清除缓存
/// </summary>
public interface ICacheClearData
{
/// <summary>
/// 清除数据
/// </summary>
/// <returns></returns>
bool ClearData();
}
}