comment.hrl 275 B

123456789101112131415
  1. -ifndef(COMMENT_HRL).
  2. -define(COMMENT_HRL, true).
  3. -include("kvs.hrl").
  4. -record(comment, {?ITERATOR(feed), % {comment_id, entry_id, feed_id}
  5. comment_id,
  6. entry_id,
  7. content,
  8. from,
  9. created,
  10. media = [],
  11. parent}).
  12. -endif.