mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 17:58:21 +00:00
15 lines
348 B
Dart
15 lines
348 B
Dart
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) {}
|
|
}
|