Sin descripción
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.

project.model.ts 250B

1234567891011121314
  1. export interface Project {
  2. id: string;
  3. name: string;
  4. description?: string;
  5. tenant_id?: string;
  6. created_at?: string;
  7. updated_at?: string;
  8. }
  9. export interface ProjectRequest {
  10. name: string;
  11. description?: string;
  12. tenant_id?: string;
  13. }