More project base
This commit is contained in:
@@ -10,4 +10,8 @@
|
||||
<PackageReference Include="System.Reactive" Version="5.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Library\InitableService\InitableService.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -3,5 +3,6 @@ namespace FileTime.Core.Models
|
||||
public static class Constants
|
||||
{
|
||||
public const char SeparatorChar = '/';
|
||||
public const int MaximumObservableMergeOperations = 4;
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,14 @@
|
||||
using FileTime.Core.Models;
|
||||
using InitableService;
|
||||
|
||||
namespace FileTime.Core.Services
|
||||
{
|
||||
public interface ITab
|
||||
public interface ITab : IInitable<IContainer>
|
||||
{
|
||||
|
||||
IObservable<IContainer?> CurrentLocation { get; }
|
||||
IObservable<IAbsolutePath?> CurrentSelectedItem { get; }
|
||||
IObservable<IEnumerable<IItem>> CurrentItems { get; }
|
||||
|
||||
void ChangeLocation(IContainer newLocation);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user