Files
simrsx-be/internal/domain/main-entities/ethnic/entity.go
T
2025-08-27 15:38:00 +07:00

12 lines
279 B
Go

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