10 lines
193 B
C#
10 lines
193 B
C#
using System.Threading.Tasks;
|
|
using Glitonea.Mvvm;
|
|
|
|
namespace Saradomin.Infrastructure.Services
|
|
{
|
|
public interface IClientLaunchService : IService
|
|
{
|
|
Task LaunchClient();
|
|
}
|
|
} |