mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 17:58:21 +00:00
2.0.0
This commit is contained in:
14
lib/src/Resource/PropertyModificationInfo.dart
Normal file
14
lib/src/Resource/PropertyModificationInfo.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import 'IResource.dart';
|
||||
import 'Template/PropertyTemplate.dart';
|
||||
|
||||
class PropertyModificationInfo {
|
||||
final IResource resource;
|
||||
final PropertyTemplate propertyTemplate;
|
||||
final int age;
|
||||
final value;
|
||||
|
||||
String get name => propertyTemplate.name;
|
||||
|
||||
PropertyModificationInfo(
|
||||
this.resource, this.propertyTemplate, this.value, this.age) {}
|
||||
}
|
||||
Reference in New Issue
Block a user