Home Reference Source Repository

src/models/JSerItemRelatedLink.js

// LICENSE : MIT
"use strict";
export default class JSerItemRelatedLink {
    constructor(link) {
        /** @type {string} */
        this.title = link["title"];
        /** @type {string} */
        this.url = link["url"];
    }
}