Notes/Services/INoteService.cs
2023-05-17 21:44:41 -04:00

11 lines
271 B
C#

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