mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2025-12-17 19:25:34 -06:00
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
|
|
}
|
|
}
|