mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-26 17:19:02 +00:00
6 lines
116 B
Dart
6 lines
116 B
Dart
class OrdinalsResponse<T> {
|
|
final T? data;
|
|
final String? error;
|
|
|
|
OrdinalsResponse({this.data, this.error});
|
|
}
|