class ASTabBarItem {
  String? title;
  String? tag;
  ASTabBarItem({
    this.title,
    this.tag,
  });
}