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

     1  package entities
     2  
     3  import (
     4  	likeable_contexters "github.com/k0marov/go-socnet/core/abstract/ownable_likeable/contexters"
     5  	"github.com/k0marov/go-socnet/core/general/core_values"
     6  	"github.com/k0marov/go-socnet/features/profiles/domain/models"
     7  )
     8  
     9  type Profile struct {
    10  	models.ProfileModel
    11  	AvatarURL core_values.FileURL
    12  	Follows   int
    13  	Followers int
    14  }
    15  
    16  type ContextedProfile struct {
    17  	Profile
    18  	likeable_contexters.OwnLikeContext
    19  }