mirror of
https://github.com/Jellify-Music/App.git
synced 2025-12-29 14:59:47 -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
|
|
}
|
|
}
|