12 lines
215 B
Go
12 lines
215 B
Go
package death_cause
|
|
|
|
import (
|
|
"simrs-vx/internal/domain/base-entities/core"
|
|
)
|
|
|
|
type DeathCause struct {
|
|
core.Main
|
|
Encounter_Id *uint `json:"encounter_id" gorm:"not null"`
|
|
Value *string `json:"value"`
|
|
}
|