export interface Permissions {
    create?: boolean;
    read?: boolean;
    update?: boolean;
    delete?: boolean;
}
