fixed space creation api

This commit is contained in:
hannathkadher
2025-01-12 11:37:10 +04:00
parent 1be52adcc8
commit a588351482
10 changed files with 123 additions and 45 deletions

View File

@ -0,0 +1,16 @@
class CreateTagBodyModel {
late String tag;
late final String? productUuid;
Map<String, dynamic> toJson() {
return {
'tag': tag,
'productUuid': productUuid,
};
}
@override
String toString() {
return toJson().toString();
}
}