mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2025-12-30 02:09:41 -06:00
11 lines
223 B
TypeScript
11 lines
223 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
|
|
}
|
|
} |