9 lines
262 B
Dart
9 lines
262 B
Dart
// 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});
|
|
}
|