using XFEExtension.NetCore.ServerInteractive.Interfaces.ServerService; using XFEExtension.NetCore.ServerInteractive.Utilities.Server; namespace XFEExtension.NetCore.ServerInteractive.Implements.ServerService; /// /// 异步服务器服务基类 /// public abstract class AsyncServerServiceBase : IAsyncServerService { /// public XFEServer XFEServer { get; set; } = null!; /// public abstract Task StartServiceAsync(); }