Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Enums/Money.cs
T
Jesse ebe8f9ded5 Mongoid changes (#440)
* Remove old IsValidMongoId and Regex

* Convert more configs to MongoId, as well as BaseClasses

* Remove HashUtil.Generate(), replaced with new MongoId()
2025-07-03 15:42:16 +01:00

21 lines
657 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace SPTarkov.Server.Core.Models.Enums;
public record Money
{
[JsonExtensionData]
public Dictionary<string, object>? ExtensionData { get; set; }
public static readonly MongoId ROUBLES = new("5449016a4bdc2d6f028b456f");
public static readonly MongoId EUROS = new("569668774bdc2da2298b4568");
public static readonly MongoId DOLLARS = new("5696686a4bdc2da3298b456a");
public static readonly MongoId GP = new("5d235b4d86f7742e017bc88a");
public static HashSet<MongoId> GetMoneyTpls()
{
return [ROUBLES, EUROS, DOLLARS, GP];
}
}