2022-01-11 13:51:48 +00:00
|
|
|
import Model from '@nozbe/watermelondb/Model';
|
|
|
|
|
|
|
|
export interface IPermission {
|
2022-02-17 13:06:31 +00:00
|
|
|
_id: string;
|
2022-01-11 13:51:48 +00:00
|
|
|
roles: string[];
|
2022-02-17 13:06:31 +00:00
|
|
|
_updatedAt: Date | string;
|
2022-01-11 13:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export type TPermissionModel = IPermission & Model;
|