Files
lti-api/internal/modules/users/models/user.model.go
T
2025-09-25 10:47:28 +07:00

16 lines
239 B
Go

package model
import (
"time"
"gorm.io/gorm"
)
type User struct {
Id uint `gorm:"primaryKey"`
Name string `gorm:"not null"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
}