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