mirror of
https://github.com/ente-io/ente.git
synced 2025-07-12 18:08:44 +00:00
16 lines
266 B
Dart
16 lines
266 B
Dart
enum IconType { simpleIcon, customIcon }
|
|
|
|
class AllIconData {
|
|
final String title;
|
|
final IconType type;
|
|
final String? color;
|
|
final String? slug;
|
|
|
|
AllIconData({
|
|
required this.title,
|
|
required this.type,
|
|
required this.color,
|
|
this.slug,
|
|
});
|
|
}
|