19 lines
243 B
Go
19 lines
243 B
Go
|
package models
|
||
|
|
||
|
type FieldsType string
|
||
|
|
||
|
const (
|
||
|
FieldTypeLeads FieldsType = "leads"
|
||
|
FieldTypeCompany FieldsType = "company"
|
||
|
FieldTypeContact FieldsType = "contact"
|
||
|
)
|
||
|
|
||
|
type Company struct {
|
||
|
}
|
||
|
|
||
|
type Lead struct {
|
||
|
}
|
||
|
|
||
|
type Contact struct {
|
||
|
}
|