|
|
@ -111,6 +111,9 @@ abstract class _SchemeForDownload {
|
|
|
|
@SerializableField(isNullable: false)
|
|
|
|
@SerializableField(isNullable: false)
|
|
|
|
String? get name;
|
|
|
|
String? get name;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@SerializableField(defaultValue: false, isNullable: false)
|
|
|
|
|
|
|
|
bool? get shared;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(type: ColumnType.text)
|
|
|
|
@Column(type: ColumnType.text)
|
|
|
|
String? description;
|
|
|
|
String? description;
|
|
|
|
|
|
|
|
|
|
|
@ -124,6 +127,7 @@ SchemeForDownload transSchemeForDownload(Scheme scheme) => SchemeForDownload(
|
|
|
|
name: scheme.name,
|
|
|
|
name: scheme.name,
|
|
|
|
description: scheme.description,
|
|
|
|
description: scheme.description,
|
|
|
|
gestures: scheme.gestures,
|
|
|
|
gestures: scheme.gestures,
|
|
|
|
|
|
|
|
shared: scheme.shared,
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
@serializable
|
|
|
|
@serializable
|
|
|
|