emo-client/Saradomin/Infrastructure/Services/IClientLaunchService.cs

10 lines
193 B
C#

using System.Threading.Tasks;
using Glitonea.Mvvm;
namespace Saradomin.Infrastructure.Services
{
public interface IClientLaunchService : IService
{
Task LaunchClient();
}
}