Files
2025-09-02 12:24:03 +07:00

12 lines
268 B
Go

package language
import (
ecore "simrs-vx/internal/domain/base-entities/core"
)
type Language struct {
ecore.Main // adjust this according to the needs
Code string `json:"code" gorm:"unique;size:10"`
Name string `json:"name" gorm:"size:50"`
}