Terminal UI V2, advanced binding
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using FileTime.App.Core.Services;
|
||||
using FileTime.Core.Models;
|
||||
|
||||
namespace FileTime.ConsoleUI.App.Services;
|
||||
|
||||
public class ConsoleSystemClipboardService : ISystemClipboardService
|
||||
{
|
||||
public Task CopyToClipboardAsync(string text) => throw new NotImplementedException();
|
||||
|
||||
public Task<IEnumerable<FullName>> GetFilesAsync() => throw new NotImplementedException();
|
||||
|
||||
public Task SetFilesAsync(IEnumerable<FullName> files) => throw new NotImplementedException();
|
||||
}
|
||||
Reference in New Issue
Block a user