Fixed landing page

pull/1653/merge
Jamie 7 years ago
parent a79e038995
commit 02cd6608d0

@ -5,7 +5,7 @@
public int ServersAvailable { get; set; }
public int ServersUnavailable { get; set; }
public bool PartiallyDown => ServersUnavailable > 0 && ServersAvailable > 0;
public bool CompletlyDown => ServersUnavailable > 0 && ServersAvailable == 0;
public bool CompletelyDown => ServersUnavailable > 0 && ServersAvailable == 0;
public bool FullyAvailable => ServersUnavailable == 0 && ServersAvailable > 0;
public int TotalServers => ServersUnavailable + ServersAvailable;
}

Loading…
Cancel
Save