forked from ebhomengo/niki
19 lines
359 B
Go
19 lines
359 B
Go
|
package entity
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Admin struct {
|
||
|
ID uint
|
||
|
FirstName string
|
||
|
LastName string
|
||
|
PhoneNumber string
|
||
|
Address string
|
||
|
Description string
|
||
|
Email string
|
||
|
City string
|
||
|
Gender UserGender
|
||
|
Status BenefactorStatus
|
||
|
Birthday time.Time
|
||
|
StatusChangedAt time.Time
|
||
|
}
|