Files
Notes/Services/INoteService.cs
2025-07-17 16:42:25 -04:00

11 lines
279 B
C#

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