export interface UserPermissions {
    _id: string;
    create?: boolean;
    read?: boolean;
    update?: boolean;
    delete?: boolean;
}
