Mineplex2018-withcommit/Website/LOC.Core/Tokens/Client/GemRewardToken.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

15 lines
288 B
C#

namespace LOC.Core.Tokens.Client
{
public class GemRewardToken
{
public int OriginalBalance;
public string Name { get; set; }
public string Source { get; set; }
public int Amount { get; set; }
public int Retries { get; set; }
}
}