stack_wallet/lib/models/ordinal.dart
2023-07-18 10:15:05 -06:00

13 lines
246 B
Dart

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,
});
}