package models import "gorm.io/gorm" type Permission struct { gorm.Model Name string `gorm:"unique;not null"` Description string Resource string `gorm:"not null"` Action string `gorm:"not null"` }