File

src/app/interfaces/event-picture.ts

Description

Event picture interface

Index

Properties

Properties

amount
amount: number
Type : number

Amount

event
event: string
Type : string

Event ID

id
id: string
Type : string

Image Id

info
info: ImageInfo
Type : ImageInfo

Image info

name
name: string
Type : string

Image name

preview
preview: string
Type : string

Preview url

ratings
ratings: number
Type : number

Ratings

selected
selected: boolean
Type : boolean

Selected

thumbnail
thumbnail: string
Type : string

Thumbnail url

import { ImageInfo } from './image-info';

/**
 * Event picture interface
 * @author Daniel Sogl
 */
export interface EventPicture {
  /** Event ID */
  event: string;
  /** Image info */
  info: ImageInfo;
  /** Image name */
  name: string;
  /** Preview url */
  preview: string;
  /** Ratings */
  ratings: number;
  /** Thumbnail url */
  thumbnail: string;
  /** Image Id */
  id: string;
  /** Selected */
  selected?: boolean;
  /** Amount */
  amount?: number;
}

results matching ""

    No results matching ""