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

     1  package models
     2  
     3  import (
     4  	"github.com/k0marov/go-socnet/core/general/core_values"
     5  )
     6  
     7  type ProfileModel struct {
     8  	Id         core_values.UserId `db:"id"`
     9  	Username   string             `db:"username"`
    10  	About      string             `db:"about"`
    11  	AvatarPath string             `db:"avatarPath"`
    12  }