master
cs 10 lines 219 Bytes
Raw
1 // Copyright (C) Microsoft Corporation. All rights reserved.
2
3 namespace WslSettings.Activation;
4
5 public interface IActivationHandler
6 {
7 bool CanHandle(object args);
8
9 Task HandleAsync(object args);
10 }