15 lines
274 B
Go
15 lines
274 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Role struct {
|
|
gorm.Model
|
|
Name string
|
|
ShowPerson bool
|
|
CreatePerson bool
|
|
EditPerson bool
|
|
ShowArchivedPerson bool
|
|
ArchivePerson bool
|
|
RestorePerson bool
|
|
ExportData bool
|
|
}
|