Mineplex2018-withcommit/Website/LOC.Core/Tokens/Client/RankUpdateToken.cs
Jonathan Williams 4254225462 CoinBombs and GemBombs now queue their amounts to prevent excessive database calls.
Removed excess account row information retrieval on web api when awarding gems/coins.
Added account specific transactional locks in webapi.
2014-11-05 14:42:11 -08:00

14 lines
250 B
C#

namespace LOC.Core.Tokens.Client
{
public class RankUpdateToken
{
public string Name { get; set; }
public string Rank { get; set; }
public bool Perm { get; set; }
public int Retries { get; set; }
}
}