UNPKG

jspurefix

Version:
17 lines (14 loc) 576 B
import { ContainedFieldSet } from '../contained' import { ContainedSetType } from '../dict-primitive' export class MessageDefinition extends ContainedFieldSet { constructor (public readonly name: string, public readonly abbreviation: string, public readonly msgType: string, public readonly category: string, public readonly description: string) { super(ContainedSetType.Msg, name, category, abbreviation, description) } public getPrefix (): string { return `M.${this.msgType}` } }