2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-03 17:58:21 +00:00
This commit is contained in:
2022-02-12 15:39:02 +03:00
parent d41911b1ab
commit 32d36144a4
2 changed files with 22 additions and 4 deletions

View 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);
}