Notes/Services/INoteService.cs
2023-05-12 12:38:13 -04:00

10 lines
231 B
C#

namespace BinaryDad.Notes.Services
{
public interface INoteService
{
ICollection<string> GetNoteNames();
string GetText(string? noteName);
void SaveText(string content, string? noteName);
}
}