platform/dsx/lib/dsx.dart
2018-06-26 10:44:40 -04:00

7 lines
148 B
Dart

class DSX {
final String template;
final String templateUrl;
final bool asDSX;
DSX({this.template, this.templateUrl, this.asDSX: true});
}