1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-28 01:42:14 +02:00
GiantsTools/Giants.DataContract/Contracts/PlayerInfo.cs

20 lines
365 B
C#
Raw Normal View History

namespace Giants.DataContract
{
using System;
using System.Collections.Generic;
using System.Text;
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; }
}
}