17 lines
265 B
V
17 lines
265 B
V
module biz
|
|
import base
|
|
|
|
// import freeflowuniverse.herolib.data.ourtime
|
|
|
|
|
|
pub struct Contact {
|
|
base.Base
|
|
pub mut:
|
|
name string // name of the contact as we use in this circle
|
|
first_name string
|
|
last_name string
|
|
email []string
|
|
tel []string
|
|
}
|
|
|