mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 03:02:51 +01:00
22 lines
438 B
C#
22 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Text;
|
|
|
|
namespace Model
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|