Add modifier to post replies to mark them known.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / PostReplyDatabase.java
index 2f320d2..1b8fbe5 100644 (file)
@@ -50,6 +50,9 @@ public interface PostReplyDatabase {
         */
        List<PostReply> getReplies(String postId);
 
+       boolean isPostReplyKnown(PostReply postReply);
+       void setPostReplyKnown(PostReply postReply);
+
        /**
         * Stores the given post reply.
         *