8 lines
137 B
C#
8 lines
137 B
C#
namespace ChatServerSpace.Services
|
|
{
|
|
public interface IChatServiceFactory
|
|
{
|
|
IChatService CreateChatService();
|
|
}
|
|
}
|