mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-16 21:27:47 +00:00
initial upload
This commit is contained in:
commit
1c65f10e24
58 changed files with 2533 additions and 0 deletions
19
model/property.js
Normal file
19
model/property.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* @class
|
||||
*/
|
||||
class Property {
|
||||
/**
|
||||
* @param {string} property_name
|
||||
* @param {number} property_id
|
||||
* @param {string} base
|
||||
* @param {string} add
|
||||
* @param {string} final
|
||||
*/
|
||||
constructor(property_name, property_id, base, add, final) {
|
||||
this.property_name = property_name;
|
||||
this.property_id = property_id;
|
||||
this.base = base;
|
||||
this.add = add;
|
||||
this.final = final;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue