13 lines
328 B
C#
13 lines
328 B
C#
using FileTime.Core.Models;
|
|
|
|
namespace FileTime.Core.Services;
|
|
|
|
public class TabEvents : ITabEvents
|
|
{
|
|
public event EventHandler<TabLocationChanged> LocationChanged;
|
|
|
|
public void OnLocationChanged(ITab tab, FullName location)
|
|
{
|
|
LocationChanged?.Invoke(this, new TabLocationChanged(location, tab));
|
|
}
|
|
} |