mirror of
https://github.com/esiur/esiur-js.git
synced 2026-04-04 14:08:20 +00:00
2.0.0
This commit is contained in:
17
src/Resource/PropertyModificationInfo.js
Normal file
17
src/Resource/PropertyModificationInfo.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import IResource from './IResource.js';
|
||||
import PropertyTemplate from './Template/PropertyTemplate.js';
|
||||
|
||||
export default class PropertyModificationInfo {
|
||||
|
||||
get name(){
|
||||
return this.propertyTemplate.name;
|
||||
}
|
||||
|
||||
PropertyModificationInfo(
|
||||
resource, propertyTemplate, value, age) {
|
||||
this.resource = resource;
|
||||
this.propertyTemplate = propertyTemplate;
|
||||
this.value = value;
|
||||
this.age = age;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user