forked from engineering/crv2
8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
|
import Inquiry from "./Inquiry";
|
||
|
|
||
|
/**
|
||
|
* SoftInquiry is a class which extends Inquiry.
|
||
|
* Structure is performed this way to have two separate collections for Hard and Soft inquiries.
|
||
|
*/
|
||
|
export default class SoftInquiry extends Inquiry {}
|