'use strict' /** * Copyright (c) 2017~2019, OBCon Inc. * All rights reserved. */ /** * @file * @copyright 2017~2019, OBCon Inc. * @author gye hyun james kim [pnuskgh@gmail.com] */ let FieldBase = utils.getClass('include', 'fields', 'base.js'); class FieldString extends FieldBase { constructor() { super(); this.type = 'string'; } } module.exports = FieldString;