mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-05-03 12:09:32 -05:00
5ca00df6f7
run prettier
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import { BaseItemDto } from '@jellyfin/sdk/lib/generated-client/models'
|
|
|
|
export class ArtistModel {
|
|
name?: string | undefined | null
|
|
|
|
constructor(itemDto: BaseItemDto) {
|
|
this.name = itemDto.Name
|
|
}
|
|
}
|