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

20 lines
372 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 ICacheClearLocalData
{
/// <summary>
/// 清除数据
/// </summary>
/// <returns></returns>
bool ClearLocalData();
}