Whiteboard Domain

This commit is contained in:
Veljko Tosic
2026-02-09 00:13:23 +01:00
parent 90c127ddb3
commit f93144f732
7 changed files with 103 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
using AipsCore.Domain.Models.Whiteboard.ValueObjects;
namespace AipsCore.Domain.Models.Whiteboard.External;
public interface IWhiteboardRepository
{
Task<Whiteboard?> Get(WhiteboardId whiteboardId, CancellationToken cancellationToken = default);
Task Save(Whiteboard whiteboard, CancellationToken cancellationToken = default);
Task<bool> WhiteboardCodeExists(WhiteboardCode whiteboardCode);
}