Takumon/mean-blog

View on GitHub
src/app/shared/models/image.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class ImageModel {
  _id: string;
  author: string;
  type: number;
  data: string;
  contentType: string;
  fileName: string;
}

export enum ImageType {
  AVATOR = 100,
  PROFILE_BACKGROUND = 200,
  OF_ARTICLE = 300,
}