Files
reallife-gamemode/ReallifeGamemode.Server/Util/ListPlayer.cs
Lennart Kampshoff a88d5256a8 formatted code
2019-05-05 17:59:11 +02:00

21 lines
430 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
/**
* @overview Life of German Reallife - Util ListPlayer ListPlayer.cs
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace ReallifeGamemode.Server.Util
{
public class ListPlayer
{
public int Id { get; set; }
public string Name { get; set; }
public int Ping { get; set; }
}
}