mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 17:58:21 +00:00
15 lines
376 B
Dart
15 lines
376 B
Dart
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;
|
|
|
|
const PropertyModificationInfo(
|
|
this.resource, this.propertyTemplate, this.value, this.age);
|
|
}
|