10 lines
323 B
C#
10 lines
323 B
C#
using FileTime.Core.Interactions;
|
|
using FileTime.GuiApp.ViewModels;
|
|
|
|
namespace FileTime.GuiApp.Services;
|
|
|
|
public interface IDialogService : IInputInterface
|
|
{
|
|
IObservable<ReadInputsViewModel?> ReadInput { get; }
|
|
void ReadInputs(IEnumerable<IInputElement> inputs, Action inputHandler, Action? cancelHandler = null);
|
|
} |