Notes/Services/INoteService.cs
2023-02-07 12:21:22 -05:00

9 lines
179 B
C#

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