Initial commit: Accessible SSH Terminal
This commit is contained in:
8
lib/models/terminal_line.dart
Normal file
8
lib/models/terminal_line.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
// lib/models/terminal_line.dart
|
||||
// This file will define the data model for a single line of terminal output.
|
||||
class TerminalLine {
|
||||
final String text;
|
||||
// TODO: Add properties for ANSI styling, e.g., color, bold, etc.
|
||||
|
||||
TerminalLine({required this.text});
|
||||
}
|
||||
Reference in New Issue
Block a user