Public Access
Make meeting lifecycle stateful
This commit is contained in:
@@ -4,5 +4,13 @@ public interface IMeetingNoteStore
|
||||
{
|
||||
Task<MeetingNote> SaveAsync(MeetingNote note, CancellationToken cancellationToken);
|
||||
|
||||
Task<MeetingNote> SaveAsync(
|
||||
MeetingNote note,
|
||||
MeetingAssistantOptions options,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
return SaveAsync(note, cancellationToken);
|
||||
}
|
||||
|
||||
Task<MeetingNote> ReadAsync(string path, CancellationToken cancellationToken);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user