using System.Collections.Generic; namespace DidabuCloud.Unity.LogEvents { public class CachedEvent { public string EventName { get; set; } public Dictionary Parameters { get; set; } public long EventTime { get; set; } public long LocalTime { get; set; } } }