mirror of
https://github.com/bitwarden/jslib
synced 2025-12-18 09:13:19 +00:00
14 lines
284 B
TypeScript
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;
|
|
}
|
|
}
|