using System.Collections.Generic;
namespace GameServiceWarden.ModuleAPI
{
public interface IServiceModule
/// <summary>
/// The name of the game service this module handles.
/// </summary>
string Name { get; }
/// Description of the game service this module handles.
string Description { get; }
/// The authors responsible for creating this module.
IEnumerable<string> Authors { get; }
/// Creates an instance of a the service to be used.
/// <param name="workspace">The workspace directory. All service required files should be stored here. Expect the directory to be created.</param>
/// <returns>The <see cref="IService"/> responsible for the instance of the game service.</returns>
IService InstantiateService(string workspace);
}