BotSharp/src/Plugins/BotSharp.Plugin.ExcelHandler/Services/ISqliteService.cs

17 lines
386 B
C#
Raw Normal View History

2024-10-02 21:20:34 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BotSharp.Plugin.ExcelHandler.Models;
using NPOI.SS.UserModel;
namespace BotSharp.Plugin.ExcelHandler.Services
{
public interface ISqliteService : IDbService
{
public void DeleteTableSqlQuery();
public string GenerateTableSchema();
}
}