niki/entity/benefactor.go

16 lines
241 B
Go
Raw Permalink 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
2024-01-02 15:35:26 +00:00
}