Files
watrbx-game-engine/Client.LegacyAssemblies/Roblox.Common/Roblox.Common/EntityCountJson.cs
T
2025-09-18 17:55:52 -04:00

14 lines
212 B
C#

namespace Roblox.Common;
public class EntityCountJson : Json
{
public static int ApiVersion = 1;
public string count { get; private set; }
public EntityCountJson(string count)
{
this.count = count;
}
}