added comments
This commit is contained in:
@@ -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";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user