Notes/Services/INoteService.cs
2024-05-07 21:43:09 -04:00

11 lines
271 B
C#

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