{
	"name": "NotificationAcl",
	"base": "VnModel",
	"options": {
		"mysql": {
			"table": "util.notificationAcl"
		}
	},
    "properties":{
        "notificationFk": {
            "id": true,
            "type": "number"
          },
          "roleFk":{
            "id": true,
            "type": "number"
          }
    },
	"relations": {
        "notification": {
            "type": "belongsTo",
            "model": "Notification",
            "foreignKey": "notificationFk"
        },
        "role": {
            "type": "belongsTo",
            "model": "VnRole",
            "foreignKey": "roleFk"
        }
    }
}