13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
export class ItemProperty {
|
|
propertyName: string
|
|
propertyDescription: string
|
|
property: number
|
|
|
|
|
|
constructor(propertyName: string, propertyDescription: string, property: number) {
|
|
this.propertyName = propertyName;
|
|
this.propertyDescription = propertyDescription;
|
|
this.property = property;
|
|
}
|
|
}
|