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