mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
15 lines
449 B
C#
15 lines
449 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class MatchingGameMapEntry
|
|
{
|
|
public uint Id;
|
|
public uint MatchingGameMapEnumFlags;
|
|
public uint LocalizedTextIdName;
|
|
public uint LocalizedTextIdDescription;
|
|
public uint MatchingGameTypeId;
|
|
public uint WorldId;
|
|
public uint RecommendedItemLevel;
|
|
public uint AchievementCategoryId;
|
|
public uint PrerequisiteId;
|
|
}
|
|
}
|