project.ts 216 B

12345678910111213
  1. export interface Project {
  2. id: number;
  3. permalink: string;
  4. user: number;
  5. idx: number;
  6. type: string;
  7. title: string;
  8. logo: string;
  9. header: number;
  10. text: string;
  11. comment: string;
  12. license?: any[];
  13. }