17 lines
277 B
C#
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; }
|
|
}
|
|
}
|