mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
16 lines
307 B
C#
16 lines
307 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Roblox.Common;
|
|
|
|
public class EntityCollectionJson : Json
|
|
{
|
|
public static int ApiVersion = 1;
|
|
|
|
public IEnumerable<EntityCollectionItem> data { get; private set; }
|
|
|
|
public EntityCollectionJson(IEnumerable<EntityCollectionItem> data)
|
|
{
|
|
this.data = data;
|
|
}
|
|
}
|