wip
This commit is contained in:
17
packages/social/application/dto/FeedItemDTO.ts
Normal file
17
packages/social/application/dto/FeedItemDTO.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user