2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-04 02:08:21 +00:00
This commit is contained in:
2022-03-12 16:21:29 +03:00
parent 92a26b8ce5
commit 88eba227ae
64 changed files with 38165 additions and 2952 deletions

15
lib/src/Data/IEnum.dart Normal file
View File

@@ -0,0 +1,15 @@
import '../Resource/Template/TemplateDescriber.dart';
class IEnum {
int index = 0;
dynamic value;
String name = '';
IEnum([this.index = 0, this.value, this.name = ""]);
TemplateDescriber get template => TemplateDescriber("IEnum");
@override
String toString() {
return '${name}<$value>';
}
}