UNPKG

nralcm

Version:

This is a framework based on NodeJs to manage rest api request lifecycle

14 lines (13 loc) 232 B
/** * Model to store Query String in meta data of controller object */ export interface QueryString { /** * Name of Query String */ name: string; /** * Value of Query String */ value: string; }