1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-25 06:36:08 +03:00
ProxySU/ProxySU_Core/ViewModels/Terminal.cs
next-autumn 14401058dc merge
2021-03-11 12:05:50 +08:00

39 lines
772 B
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 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; set; }
}
}