ever-given-pod/src/common/dtos/streamDto.ts

15 lines
323 B
TypeScript
Raw Normal View History

export type StreamDto = {
id: string;
title?: string;
description?: string;
feedUrl?: string;
siteUrl?: string;
imageUrl?: string;
author?: string;
managingEditor?: string;
webMaster?: string;
language?: string;
categories?: string[];
pubDate?: string;
ttl?: number;
};