mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 22:13:44 +03:00
12 lines
145 B
Go
12 lines
145 B
Go
package entity
|
|
|
|
import "time"
|
|
|
|
type Comment struct {
|
|
ID int64
|
|
UserID int64
|
|
SKU int64
|
|
CreatedAt time.Time
|
|
Text string
|
|
}
|