niki/entity/benefactor.go

19 lines
311 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
Address string
Description string
Email string
City string
Gender Gender
Status BenefactorStatus
Birthdate time.Time
Role UserRole
2024-01-02 15:35:26 +00:00
}