pop-camarades/models/people.go

20 lines
316 B
Go

package models
import "gorm.io/gorm"
type Person struct {
gorm.Model
IsMember bool
IsContact bool
FirstName string
LastName string
Email string
Phone string
Mobile string
Address1 string
Address2 string
PostalCode string
City string
SectionID uint
Section Section
}