early work on supporting multiple files

This commit is contained in:
Ryan Peters
2023-02-07 12:21:22 -05:00
parent ed90291b93
commit f610664230
6 changed files with 36 additions and 22 deletions

View File

@ -2,7 +2,7 @@
{
public interface INoteService
{
string Get();
void Save(string content);
string Get(string? noteName);
void Save(string content, string? noteName);
}
}