src/app/modules/ach-setup/models/class-setting.ts
Properties |
| buildType |
buildType:
|
Type : string
|
| classType |
classType:
|
Type : string
|
| description |
description:
|
Type : string
|
| name |
name:
|
Type : string
|
| object_Id |
object_Id:
|
Type : string
|
| value |
value:
|
Type : string
|
export interface ClassSetting {
classType: string;
object_Id: string;
buildType: string;
name: string;
value: string;
description: string;
}