Files
umbrix/lib/features/log/model/log_entity.dart
Umbrix Developer 76a374950f feat: mobile-like window size and always-visible stats
- Changed window size to mobile phone format (400x800)
- Removed width condition for ActiveProxyFooter - now always visible
- Added run-umbrix.sh launch script with icon copying
- Stats cards now display on all screen sizes
2026-01-17 13:09:20 +03:00

14 lines
317 B
Dart

import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:umbrix/features/log/model/log_level.dart';
part 'log_entity.freezed.dart';
@freezed
class LogEntity with _$LogEntity {
const factory LogEntity({
LogLevel? level,
DateTime? time,
required String message,
}) = _LogEntity;
}