2022-01-24 20:12:36 +00:00
|
|
|
import Model from '@nozbe/watermelondb/Model';
|
|
|
|
|
|
|
|
export interface IPermission {
|
2022-02-28 18:00:47 +00:00
|
|
|
_id: string;
|
2022-01-24 20:12:36 +00:00
|
|
|
roles: string[];
|
2022-02-28 18:00:47 +00:00
|
|
|
_updatedAt: Date | string;
|
2022-01-24 20:12:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export type TPermissionModel = IPermission & Model;
|