mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-26 15:16:08 +03:00
60 lines
1.2 KiB
C#
60 lines
1.2 KiB
C#
using ProxySU_Core.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
|
|
namespace ProxySU_Core.ViewModels
|
|
{
|
|
public class Terminal : BaseViewModel
|
|
{
|
|
private string outputText;
|
|
private bool hasConnected;
|
|
|
|
public Terminal(Host host)
|
|
{
|
|
Host = host;
|
|
HasConnected = false;
|
|
}
|
|
|
|
public bool HasConnected
|
|
{
|
|
get
|
|
{
|
|
return hasConnected;
|
|
}
|
|
set
|
|
{
|
|
hasConnected = value;
|
|
Notify("HasConnected");
|
|
}
|
|
}
|
|
|
|
public Host Host { get; set; }
|
|
|
|
public string CommandText { get; set; }
|
|
|
|
public string OutputText
|
|
{
|
|
get => outputText;
|
|
}
|
|
|
|
public void ClearOutput()
|
|
{
|
|
outputText = "";
|
|
Notify("OutputText");
|
|
}
|
|
|
|
public void AddOutput(string text)
|
|
{
|
|
outputText += text;
|
|
|
|
if (!text.EndsWith("\n"))
|
|
{
|
|
outputText += "\n";
|
|
}
|
|
Notify("OutputText");
|
|
}
|
|
}
|
|
}
|