Console icons

This commit is contained in:
2024-03-11 21:35:11 +01:00
parent 2e1f682bbe
commit 92374fcd7b
7 changed files with 851 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
using FileTime.Core.Models;
namespace FileTime.ConsoleUI.App.Services;
public interface IIconProvider
{
string GetImage(IItem? item);
}