Container traits to extensions

This commit is contained in:
2023-08-03 10:48:39 +02:00
parent 86cffa6aa4
commit 558a0a08bb
32 changed files with 258 additions and 158 deletions

View File

@@ -4,10 +4,10 @@ namespace FileTime.Core.Models;
public class TabLocationChanged : EventArgs
{
public FullName Location { get; }
public IContainer Location { get; }
public ITab Tab { get; }
public TabLocationChanged(FullName location, ITab tab)
public TabLocationChanged(IContainer location, ITab tab)
{
Location = location;
Tab = tab;