1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-26 00:01:44 +02:00
GiantsTools/Giants.DataContract/Contracts/PlayerInfo.cs

16 lines
285 B
C#
Raw Normal View History

namespace Giants.DataContract
{
public class PlayerInfo
{
public int Index { get; set; }
public string Name { get; set; }
public int Frags { get; set; }
public int Deaths { get; set; }
public string TeamName { get; set; }
}
}