using XFEExtension.NetCore.ServerInteractive.Interfaces.ServerService;
using XFEExtension.NetCore.ServerInteractive.Utilities.Server;
namespace XFEExtension.NetCore.ServerInteractive.Implements.ServerService;
///
/// 服务器服务基类
///
public abstract class ServerServiceBase : IServerService
{
///
public XFEServer XFEServer { get; set; } = null!;
///
public abstract void StartService();
}