mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 20:49:33 +08:00
20 lines
531 B
C#
20 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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 Library.Common.Network.SQLServerInfo ServerInfo { get; }
|
|
}
|
|
}
|