16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
import { UserInfoView } from './UserInfoView.model';
|
|
|
|
export interface ImageView {
|
|
url: string;
|
|
created: Date;
|
|
modified?: Date | null;
|
|
filename: string;
|
|
mimeType: string;
|
|
alt?: string | null;
|
|
caption?: string | null;
|
|
owner: UserInfoView;
|
|
isPublic?: boolean;
|
|
height: number | null;
|
|
width: number | null;
|
|
}
|