mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 02:07:43 +00:00
13 lines
246 B
Dart
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,
|
|
});
|
|
}
|