Notes/Services/INoteService.cs

11 lines
271 B
C#
Raw Normal View History

2023-01-05 15:32:21 +00:00
namespace BinaryDad.Notes.Services
{
public interface INoteService
{
ICollection<string> GetNoteNames();
2024-05-08 01:43:09 +00:00
string GetNote(string noteName);
void SaveNote(string content, string noteName);
2023-05-12 16:47:54 +00:00
void DeleteNote(string noteName);
2023-01-05 15:32:21 +00:00
}
}