Files
herolib/lib/hero/models/gov/user.v
2025-07-30 22:12:19 +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
}