1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-29 01:01:45 +02:00
GiantsTools/Giants.DataContract/Contracts/PlayerInfo.cs
2020-08-08 17:26:41 -07:00

16 lines
285 B
C#

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; }
}
}