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