2023-02-26 01:50:38 +08:00

16 lines
443 B
C#

using Milimoe.FunGame.Core.Library.Common.Network;
using Milimoe.FunGame.Core.Library.Constant;
namespace Milimoe.FunGame.Core.Interface.Base
{
public interface ISQLHelper
{
public string Script { get; set; }
public EntityType EntityType { get; }
public object Entity { get; }
public SQLResult Result { get; }
int UpdateRows { get; }
public SQLServerInfo ServerInfo { get; }
}
}