19 lines
611 B
Go
19 lines
611 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
MandateDateSigned time.Time `json:"mandate_date_signed"`
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
Email string `json:"email"`
|
|
Password string `json:"-"`
|
|
Salt string `json:"-"`
|
|
IBAN string `json:"iban"`
|
|
BIC string `json:"bic"`
|
|
MandateReference string `json:"mandate_reference"`
|
|
ID int `json:"id"`
|
|
}
|