master
cs 14 lines 284 Bytes
Raw
1 // Copyright (C) Microsoft Corporation. All rights reserved.
2
3 namespace WslSettings.Contracts.Services;
4
5 public interface IWindowService
6 {
7 public enum WindowId
8 {
9 MainWindow,
10 OOBEWindow
11 }
12
13 WindowEx CreateOrGetWindow(WindowId windowId);
14 }