Notes/Services/INoteService.cs

10 lines
223 B
C#

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