23 lines
327 B
Go
23 lines
327 B
Go
package models
|
|
|
|
type FieldsType string
|
|
|
|
const (
|
|
FieldTypeLeads FieldsType = "leads"
|
|
FieldTypeCompany FieldsType = "company"
|
|
FieldTypeContact FieldsType = "contact"
|
|
FieldTypeDeal FieldsType = "deal"
|
|
)
|
|
|
|
type CompanyFields struct {
|
|
}
|
|
|
|
type LeadFields struct {
|
|
}
|
|
|
|
type ContactFields struct {
|
|
}
|
|
|
|
type DealFields struct {
|
|
}
|