using System.Collections; using System.Collections.Generic; using UnityEngine; namespace KairoEngine.Core { public enum EventResponseStatus { OK, NotFound, EmptyResponse } public class EventResponse { public EventResponseStatus status; public T value; } }