Files
Csharp-eindproject/Server/Models/Information.cs
2020-10-12 16:53:15 +02:00

17 lines
277 B
C#

using SharedClientServer;
using System;
using System.Collections.Generic;
using System.Text;
namespace Server.Models
{
class Information : ObservableObject
{
public bool CanStartServer { get; set; }
public bool ServerOnline { get; set; }
}
}