NBloodServerSupervisor/Supervisor/PacketData.cs
2020-01-23 21:03:54 +01:00

14 lines
264 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Supervisor
{
abstract class PacketData
{
public int Port { get; set; }
public bool IsStarted { get; set; }
public bool IsPrivate { get; set; }
}
}