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