You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 1234567891011121314 |
- export interface Project {
- id: string;
- name: string;
- description?: string;
- tenant_id?: string;
- created_at?: string;
- updated_at?: string;
- }
-
- export interface ProjectRequest {
- name: string;
- description?: string;
- tenant_id?: string;
- }
|