aboutsummaryrefslogtreecommitdiff
path: root/internal/models/comment.go
blob: df27ca34d2eabea17fd0bb6cb50e1d4e8860d92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package models

import "time"

type Comment struct {
	Id            int
	IsVerified    bool
	Time          time.Time
	FormattedTime string
	Name          string
	Content       string
}