UNPKG

apim-developer-portal1

Version:

API management developer portal

11 lines (9 loc) 249 B
import { TagContract } from "../contracts/tag"; export class Tag { public id: string; public name: string; constructor(contract: TagContract) { this.id = contract.id; this.name = contract.properties.displayName; } }