using XFEExtension.NetCore.ServerInteractive.Interfaces.CoreService;
namespace XFEExtension.NetCore.ServerInteractive.Implements.CoreService;
///
/// 服务器标准核心服务基类
///
public abstract class ServerCoreStandardServiceBase : XFEServerCoreServiceBase, IServerCoreStandardService, IServerCoreRouteProvider
{
///
/// 所有入口点路径列表(由增量生成器自动填充)
///
public virtual List EntryPointList { get; } = [];
///
public virtual Dictionary SyncEntryPoints { get; } = new();
///
public virtual Dictionary> AsyncEntryPoints { get; } = new();
///
public virtual void Initialize() { }
}