a6ecb434c4
* ignore nulls in json * Implement ProfileActivityService * add temp beta release * implement customizationController * comment out logging * implement gameStart * start traderController * add money enum, finish traderController
10 lines
297 B
C#
10 lines
297 B
C#
namespace Core.Models.Enums;
|
|
|
|
public class Money
|
|
{
|
|
public const string ROUBLES = "5449016a4bdc2d6f028b456f";
|
|
public const string EUROS = "569668774bdc2da2298b4568";
|
|
public const string DOLLARS = "5696686a4bdc2da3298b456a";
|
|
public const string GP = "5d235b4d86f7742e017bc88a";
|
|
}
|