Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Tag.js « Tag « Model « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8f851e66109167909daf476a64375b16f209873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import Properties from '../../Configuration/Tag';
import AbstractRevisionModel from '../AbstractRevisionModel';

export default class Tag extends AbstractRevisionModel {

    get MODEL_TYPE() {return 'tag';}

    /**
     *
     * @param {Object} [data={}]
     */
    constructor(data = {}) {
        super(Properties, data);
    }

    /**
     * @return {String}
     */
    getLabel() {
        return this.getProperty('label');
    }

    /**
     * @param {String} value
     *
     * @return {Tag}
     */
    setLabel(value) {
        return this.setProperty('label', value);
    }

    /**
     * @return {String}
     */
    getColor() {
        return this.getProperty('color');
    }

    /**
     * @param {String} value
     *
     * @return {Tag}
     */
    setColor(value) {
        return this.setProperty('color', value);
    }
}