mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-25 19:55:52 +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});
|
|
}
|