mucke/lib/domain/entities/artist.dart

11 lines
179 B
Dart
Raw Normal View History

2020-03-24 22:17:03 +01:00
import 'package:equatable/equatable.dart';
class Artist extends Equatable {
2020-08-08 19:02:03 +02:00
const Artist({this.name});
2020-03-24 22:17:03 +01:00
2020-04-11 14:27:49 +02:00
final String name;
2020-03-24 22:17:03 +01:00
@override
List<Object> get props => [name];
}