14 lines
327 B
Dart
14 lines
327 B
Dart
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
|
|
part 'chat_session.freezed.dart';
|
|
|
|
@freezed
|
|
class ChatSessionEntity with _$ChatSessionEntity {
|
|
const factory ChatSessionEntity({
|
|
required String id,
|
|
String? title,
|
|
required String createdAt,
|
|
required String updatedAt,
|
|
}) = _ChatSessionEntity;
|
|
}
|