9 lines
145 B
C#
9 lines
145 B
C#
namespace BinaryDad.Notes.Services
|
|
{
|
|
public interface INoteService
|
|
{
|
|
string Get();
|
|
void Save(string content);
|
|
}
|
|
}
|