forked from ebhomengo/niki
1
0
Fork 0
niki/entity/benefactor.go

17 lines
271 B
Go
Raw Normal View History

2024-01-02 15:35:26 +00:00
package entity
import "time"
type Benefactor struct {
ID uint
FirstName string
LastName string
PhoneNumber string
Description string
Email string
Gender Gender
BirthDate time.Time
Role UserRole
Status BenefactorStatus
2024-01-02 15:35:26 +00:00
}