added comments

This commit is contained in:
Sem van der Hoeven
2020-10-12 19:51:14 +02:00
parent bd94747da6
commit 64615feb5e
3 changed files with 46 additions and 15 deletions

View File

@@ -1,20 +1,19 @@

using SharedClientServer;
using System;
using System.Collections.Generic;
using System.Text;
using SharedClientServer;
namespace Server.Models
{
class Information : ObservableObject
public class Information : ObservableObject
{
public bool CanStartServer { get; set; }
public bool ServerOnline { get; set; }
public string ServerStatus { get {
if (ServerOnline) return "Online";
return "Offline";
}
public string ServerStatus
{
get
{
if (ServerOnline) return "Online";
return "Offline";
}
}
}
}
}