NBloodServerSupervisor/Common/SpawnedServerInfo.cs
2020-01-27 16:25:45 +00:00

23 lines
452 B
C#

using Model;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace Common
{
public class SpawnedServerInfo
{
public Process Process { get; }
public int Port { get; }
public Mod Mod { get; }
public SpawnedServerInfo(Process process, int port, Mod mod)
{
Process = process;
Port = port;
Mod = mod;
}
}
}