ChatCheap/ChatServerSpace/Services/IChatServiceFactory.cs
2025-05-20 21:51:05 -03:00

8 lines
137 B
C#

namespace ChatServerSpace.Services
{
public interface IChatServiceFactory
{
IChatService CreateChatService();
}
}