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

     1  package models
     2  
     3  import (
     4  	"github.com/k0marov/go-socnet/core/general/core_values"
     5  	"github.com/k0marov/go-socnet/features/comments/domain/values"
     6  )
     7  
     8  type CommentModel struct {
     9  	Id        values.CommentId   `db:"id"`
    10  	AuthorId  core_values.UserId `db:"owner_id"`
    11  	Text      string             `db:"textContent"`
    12  	CreatedAt int64              `db:"createdAt"`
    13  }