1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-18 09:13:19 +00:00
Files
jslib/src/models/data/fieldData.ts
Kyle Spearrin 166ed44392 Revert "reference barrels"
This reverts commit 2d9f53fbed.
2018-02-19 13:07:19 -05:00

14 lines
284 B
TypeScript

import { FieldType } from '../../enums/fieldType';
export class FieldData {
type: FieldType;
name: string;
value: string;
constructor(response: any) {
this.type = response.Type;
this.name = response.Name;
this.value = response.Value;
}
}