Notes/Services/INoteService.cs

9 lines
145 B
C#

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