mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 18:43:54 -06:00
16 lines
396 B
Plaintext
16 lines
396 B
Plaintext
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
|
|
namespace Microsoft.Terminal.Settings.Model
|
|
{
|
|
[default_interface] runtimeclass ApplicationState {
|
|
static ApplicationState SharedInstance();
|
|
|
|
void Reload();
|
|
|
|
String FilePath { get; };
|
|
|
|
Windows.Foundation.Collections.IVector<String> RecentCommands { get; set; };
|
|
}
|
|
}
|