1
0
Files
mineplex-crepe/Website/LOC.Core/Tokens/Client/DeathStatToken.cs

12 lines
292 B
C#
Raw Normal View History

2021-08-19 16:35:32 +07:00
namespace LOC.Core.Tokens.Client
{
using System.Collections.Generic;
public class DeathStatToken
{
public PlayerSetupToken Killer { get; set; }
public PlayerSetupToken Victim { get; set; }
public List<PlayerSetupToken> Assistants { get; set; }
}
}