8 lines
148 B
Dart
8 lines
148 B
Dart
|
class DSX {
|
||
|
final String template;
|
||
|
final String templateUrl;
|
||
|
final bool asDSX;
|
||
|
|
||
|
DSX({this.template, this.templateUrl, this.asDSX: true});
|
||
|
}
|