Files
db/specs/models_old/gov/user.v
2025-08-21 17:26:40 +02:00

13 lines
213 B
V

module gov
import freeflowuniverse.herolib.hero.models.core
// User represents a user in the governance system
pub struct User {
core.Base
pub mut:
name string @[index]
email string @[index]
role string
}