pm-controls
Version:
ProModel Controls
22 lines (19 loc) • 482 B
text/typescript
import {
Input
} from '@angular/core';
export class PropertyLabel {
constructor(
name?: string,
label?: string,
widthPx?: string,
isRequired?: boolean) {
this.Name = name;
this.Label = label || this.Name;
this.WidthPx = widthPx;
this.IsRequired = isRequired;
}
() Name: string;
() Label: string;
() WidthPx: string;
() IsRequired?: boolean;
}