// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. namespace TerminalApp { [default_interface] runtimeclass Tab : Windows.UI.Xaml.Data.INotifyPropertyChanged { String Title { get; }; Windows.UI.Xaml.Controls.IconSource IconSource { get; }; Microsoft.Terminal.Settings.Model.Command SwitchToTabCommand { get; }; UInt32 TabViewIndex { get; }; } }