github.com/k0marov/go-socnet@v0.0.0-20220715154813-90d07867c782/features/comments/domain/entities/entities.go (about)

     1  package entities
     2  
     3  import (
     4  	"github.com/k0marov/go-socnet/core/abstract/ownable_likeable/contexters"
     5  	"github.com/k0marov/go-socnet/features/comments/domain/models"
     6  	profile_entities "github.com/k0marov/go-socnet/features/profiles/domain/entities"
     7  )
     8  
     9  type Comment struct {
    10  	models.CommentModel
    11  	Likes int
    12  }
    13  
    14  type ContextedComment struct {
    15  	Comment
    16  	contexters.OwnLikeContext
    17  	Author profile_entities.ContextedProfile
    18  }