stack_wallet/lib/models/ordinal.dart

14 lines
246 B
Dart
Raw Normal View History

2023-07-18 16:15:05 +00:00
class Ordinal {
final String name;
final String inscription;
final String rank;
// TODO: make a proper class instead of this placeholder
Ordinal({
required this.name,
required this.inscription,
required this.rank,
});
}