選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

35 行
732 B

  1. export type CardType = 'INFO_PAGE' | 'EXTERNAL_LINK' | 'IMAGE_GALLERY' | 'SERVICE_REQUEST';
  2. export interface Portal {
  3. id: string;
  4. tenantId: string;
  5. title: string;
  6. welcomeText: string;
  7. heroImageUrl: string;
  8. logoUrl: string;
  9. themeColor: string;
  10. }
  11. export interface Card {
  12. id: string;
  13. portalId: string;
  14. title: string;
  15. imageUrl: string;
  16. shortDescription: string;
  17. fullContent: string;
  18. cardType: CardType;
  19. actionUrl?: string;
  20. displayOrder: number;
  21. }
  22. export interface Portal {
  23. id: string;
  24. tenantId: string;
  25. title: string;
  26. welcomeText: string;
  27. heroImageUrl: string;
  28. logoUrl: string;
  29. themeColor: string;
  30. fadeHeroImage?: boolean;
  31. maxGridColumns?: number;
  32. }