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

39 lines
772 B
C#
Raw Normal View History

2021-03-04 11:25:36 +03:00
using ProxySU_Core.Models;
using System;
2021-02-25 04:59:06 +03:00
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace ProxySU_Core.ViewModels
{
2021-03-04 11:25:36 +03:00
public class Terminal : BaseViewModel
2021-02-25 04:59:06 +03:00
{
2021-03-09 12:52:09 +03:00
private bool hasConnected;
2021-02-25 04:59:06 +03:00
public Terminal(Host host)
{
Host = host;
2021-03-09 12:52:09 +03:00
HasConnected = false;
}
public bool HasConnected
{
get
{
return hasConnected;
}
set
{
hasConnected = value;
Notify("HasConnected");
}
2021-02-25 04:59:06 +03:00
}
public Host Host { get; set; }
public string CommandText { get; set; }
2021-03-11 07:05:50 +03:00
public string OutputText { get; set; }
2021-02-25 04:59:06 +03:00
}
}