2023-02-26 23:06:34 +08:00

17 lines
470 B
C#

using Milimoe.FunGame.Core.Library.Constant;
using Milimoe.FunGame.Core.Library.Server;
using System.Data;
namespace Milimoe.FunGame.Core.Interface.Base
{
public interface ISQLHelper
{
public string Script { get; set; }
public CommandType CommandType { get; set; }
public SQLResult Result { get; }
public SQLServerInfo ServerInfo { get; }
public int UpdateRows { get; }
public DataSet DataSet { get; }
}
}