shared/api/models/TunewsModel.ts
import { decodeHTML } from 'entities'
import { DateTime } from 'luxon'
class TunewsModel {
_id: number
_title: string
_tags: Array<string>
_date: DateTime
_content: string
_eNewsNo: string
constructor(params: {
id: number
title: string
date: DateTime
tags: Array<string>
content: string
eNewsNo: string
}) {
const { id, date, title, tags, content, eNewsNo } = params
this._id = id
this._title = decodeHTML(title)
this._tags = tags
this._date = date
this._content = content
this._eNewsNo = eNewsNo
}
get id(): number {
return this._id
}
get title(): string {
return this._title
}
get date(): DateTime {
return this._date
}
get tags(): Array<string> {
return this._tags
}
get content(): string {
return this._content
}
get eNewsNo(): string {
return this._eNewsNo
}
}
export default TunewsModel