12 lines
298 B
C#
12 lines
298 B
C#
using ClaudeDo.Ui.Services;
|
|
|
|
namespace ClaudeDo.Ui.Services.Interfaces;
|
|
|
|
public interface INotesApi
|
|
{
|
|
Task<List<DailyNoteDto>> ListAsync(DateOnly day);
|
|
Task<DailyNoteDto?> AddAsync(DateOnly day, string text);
|
|
Task UpdateAsync(string id, string text);
|
|
Task DeleteAsync(string id);
|
|
}
|