mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 10:49:49 +08:00
refactor: split terminal models
This commit is contained in:
6
lib/models/terminal/system_log_data.dart
Normal file
6
lib/models/terminal/system_log_data.dart
Normal file
@@ -0,0 +1,6 @@
|
||||
class SystemLogData {
|
||||
SystemLogData({required this.category, required this.message, this.stack});
|
||||
final String category; // ui | provider | io | storage | unknown
|
||||
final String message;
|
||||
final String? stack;
|
||||
}
|
||||
Reference in New Issue
Block a user