bitrix/internal/models/getListFields.go
2024-09-20 17:41:33 +03:00

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 {
}