mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 05:53:45 +03:00
10 lines
127 B
Go
10 lines
127 B
Go
package entity
|
|
|
|
type Comment struct {
|
|
ID int64
|
|
UserID int64
|
|
SKU int64
|
|
CreatedAt string
|
|
Text string
|
|
}
|