You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
364 B
20 lines
364 B
2 months ago
|
import 'package:flutter/material.dart';
|
||
|
|
||
2 months ago
|
class AppTab {
|
||
2 months ago
|
final String id;
|
||
|
final String title;
|
||
|
final String? type; // 新增类型字段
|
||
|
final IconData? icon; // 新增图标字段
|
||
|
String content;
|
||
|
String? fileName;
|
||
|
|
||
2 months ago
|
AppTab({
|
||
2 months ago
|
required this.id,
|
||
|
required this.title,
|
||
|
this.type,
|
||
|
this.icon,
|
||
|
this.content = '',
|
||
|
this.fileName,
|
||
|
});
|
||
|
}
|