NBloodServerSupervisor/Model/SpawnedServerInfo.cs

22 lines
438 B
C#
Raw Normal View History

using System;
2020-01-27 17:25:45 +01:00
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace Model
2020-01-27 17:25:45 +01:00
{
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;
}
}
}