// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.asset.monitor;

import javax.annotation.Nonnull;

public class PathEvent
{
    private final EventKind eventKind;
    private final long timestamp;
    
    public PathEvent(final EventKind eventKind, final long timestamp) {
        this.eventKind = eventKind;
        this.timestamp = timestamp;
    }
    
    public EventKind getEventKind() {
        return this.eventKind;
    }
    
    public long getTimestamp() {
        return this.timestamp;
    }
    
    @Nonnull
    @Override
    public String toString() {
        return "PathEvent{eventKind=" + String.valueOf(this.eventKind) + ", timestamp=" + this.timestamp;
    }
}
