GiantsTools/Giants.DataContract/Contracts/PlayerInfo.cs

20 lines
365 B
C#

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