13 lines
248 B
C#
13 lines
248 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BITFALL.Models
|
||
|
{
|
||
|
public record ServerInfo
|
||
|
{
|
||
|
public string name;
|
||
|
public string address;
|
||
|
public uint port;
|
||
|
public int ownerSteamId;
|
||
|
}
|
||
|
}
|