platform/dsx/lib/dsx.dart

8 lines
148 B
Dart
Raw Normal View History

2018-06-26 14:44:40 +00:00
class DSX {
final String template;
final String templateUrl;
final bool asDSX;
DSX({this.template, this.templateUrl, this.asDSX: true});
}