Files
gridpilot.gg/packages/social/application/dto/FeedItemDTO.ts
2025-12-11 11:25:22 +01:00

17 lines
377 B
TypeScript

import type { FeedItemType } from '../../domain/value-objects/FeedItemType';
export interface FeedItemDTO {
id: string;
timestamp: string;
type: FeedItemType;
actorFriendId?: string;
actorDriverId?: string;
leagueId?: string;
raceId?: string;
teamId?: string;
position?: number;
headline: string;
body?: string;
ctaLabel?: string;
ctaHref?: string;
}