using FileTime.Core.Models; namespace FileTime.Core.Services; public class TabEvents : ITabEvents { public event EventHandler LocationChanged; public void OnLocationChanged(ITab tab, FullName location) { LocationChanged?.Invoke(this, new TabLocationChanged(location, tab)); } }