package models import "time" type Role struct { ID string `json:"id"` Name string `json:"name"` Description string `json:"description"` CreatedAt time.Time `json:"createdAt"` CreatedBy string `json:"createdBy"` }