@c10t/nice-component-library
Version:
nice-component-library
14 lines (13 loc) • 374 B
TypeScript
import { FormGroup } from "@angular/forms";
export declare class BaseModel {
id?: number | null;
checked?: boolean;
invalid?: boolean;
createdDate?: string;
createdBy?: string;
createdByExtraInfo?: string;
lastModifiedDate?: string;
lastModifiedBy?: string;
lastModifiedByExtraInfo?: string;
constructor(form?: FormGroup | number);
}