using System; namespace Unity.Services.Core.Telemetry.Internal { [Serializable] class CachedPayload where TPayload : ITelemetryPayload { /// /// Time, in ticks, the first event of this payload was recorded. /// It uses . /// public long TimeOfOccurenceTicks; public TPayload Payload; } }