Multiprocotol Terminalprogram (BAT)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MultiTerm/MultiTerm.Core/ViewModel/ITerminalViewModel.cs

31 lines
637 B

using MultiTerm.Core.Types;
namespace MultiTerm.Core.ViewModel;
public interface ITerminalViewModel
{
/// <summary>
/// Title of the Terminal View.
/// </summary>
string Title { get; }
/// <summary>
/// Type of view.
/// </summary>
TerminalViewType ViewType { get; }
/// <summary>
/// Type of Protocol.
/// </summary>
ProtocolType ProtocolType { get; set; }
/// <summary>
/// Request Closing of Terminal.
/// </summary>
void CloseRequest();
/// <summary>
/// Closing of Terminal was initiated.
/// </summary>
event EventHandler ClosingEvent;
}