Files
6098-5/Cowain.Preheat.Common/Interface/IServerManager.cs
T

19 lines
359 B
C#
Raw Normal View History

2026-05-28 22:11:13 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Unity;
namespace Cowain.Preheat.Common.Interface
{
public interface IServerManager
{
string Name { get; set; }
IUnityContainer _unityContainer { set; get; }
void Start();
void Stop();
}
}