Notes/Services/INoteService.cs

9 lines
145 B
C#
Raw Normal View History

2023-01-05 15:32:21 +00:00
namespace BinaryDad.Notes.Services
{
public interface INoteService
{
string Get();
void Save(string content);
}
}