mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
9 lines
246 B
C#
9 lines
246 B
C#
namespace Remotely.Desktop.UI.ViewModels.Fakes;
|
|
internal class FakeSessionIndicatorWindowViewModel : FakeBrandedViewModelBase, ISessionIndicatorWindowViewModel
|
|
{
|
|
public Task PromptForExit()
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|