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