You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
448 B

import { LabelItem } from '~/domain/models/label/label'
export class LabelDTO {
id: number
text: string
prefixKey: string | null
suffixKey: string | null
backgroundColor: string
textColor: string
constructor(item: LabelItem) {
this.id = item.id
this.text = item.text
this.prefixKey = item.prefixKey
this.suffixKey = item.suffixKey
this.backgroundColor = item.backgroundColor
this.textColor = '#ffffff'
}
}