Notes/Services/INoteService.cs
2025-01-09 11:41:18 -05:00

11 lines
271 B
C#

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