feat(ui): INotesApi wrapper for daily notes
This commit is contained in:
11
src/ClaudeDo.Ui/Services/Interfaces/INotesApi.cs
Normal file
11
src/ClaudeDo.Ui/Services/Interfaces/INotesApi.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user