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