Socket
Socket
Sign inDemoInstall

citadel-svc-common-models

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

citadel-svc-common-models - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

src/models/commonConstantModel.ts

2

package.json
{
"name": "citadel-svc-common-models",
"version": "0.0.02",
"version": "0.0.03",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -0,1 +1,3 @@

import { GenericConstantModel } from "./genericConstantModel";
/**

@@ -18,4 +20,10 @@ * @swagger

* properties:
* countryShortName:
* codeCategory:
* type: string
* codeName:
* type: string
* codeValue:
* type: string
* shortName:
* type: string
* officialName:

@@ -29,9 +37,5 @@ * type: string

* type: string
* isDeleted:
* type: boolean
* createdDate:
* type: date
*/
export class CountryModel {
countryShortName: string;
export class CountryModel extends GenericConstantModel {
shortName: string;
officialName: string;

@@ -41,7 +45,6 @@ iso3: string;

countryCode: string;
isDeleted: boolean;
createdDate: Date;
constructor() {
this.countryShortName = null;
super();
this.shortName = null;
this.officialName = null;

@@ -51,5 +54,3 @@ this.iso3 = null;

this.countryCode = null;
this.isDeleted = null;
this.createdDate = null;
}
}
import { CountryModel } from "./countryModel";
import { CommonConstantModel } from "./commonConstantModel";
export {
CountryModel
CountryModel,
CommonConstantModel
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc