vn-verdnaturachat/app/definitions/IRole.ts

9 lines
152 B
TypeScript
Raw Normal View History

import Model from '@nozbe/watermelondb/Model';
export interface IRole {
id: string;
description?: string;
}
export type TRoleModel = IRole & Model;