14 lines
222 B
Dart
14 lines
222 B
Dart
|
class HeroDto {
|
||
|
final int id;
|
||
|
final String name;
|
||
|
final String? portraitUrl;
|
||
|
final String? description;
|
||
|
|
||
|
HeroDto({
|
||
|
required this.id,
|
||
|
required this.name,
|
||
|
this.portraitUrl,
|
||
|
this.description,
|
||
|
});
|
||
|
}
|