mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-02-08 23:28:58 -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
|
|
}
|
|
}
|