Families.Web 1.0.0.0
사진, 동영상, 글, 댓글과 반응을 가족끼리만 공유하는 비공개 앨범·타임라인 서비스입니다.
로딩중...
검색중...
일치하는것 없음
IReactionStore.cs
이 파일의 문서화 페이지로 가기
2
4
13public interface IReactionStore
14{
55 Task<ReactionSummary> GetAsync(string slug, string postId, CancellationToken ct = default);
104 Task AddReactionAsync(string slug, string postId, string emoji, CancellationToken ct = default);
153 Task AddCommentAsync(string slug, string postId, CommentEntry comment, CancellationToken ct = default);
202 Task DeleteCommentAsync(string slug, string postId, string commentId, CancellationToken ct = default);
203}
Task< ReactionSummary > GetAsync(string slug, string postId, CancellationToken ct=default)
Task DeleteCommentAsync(string slug, string postId, string commentId, CancellationToken ct=default)
Task AddReactionAsync(string slug, string postId, string emoji, CancellationToken ct=default)
Task AddCommentAsync(string slug, string postId, CommentEntry comment, CancellationToken ct=default)