|
|
|
@ -1,3 +1,5 @@
|
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
@ -32,6 +34,8 @@ namespace Jellyfin.Data.Entities
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="title">The title or name of the object.</param>
|
|
|
|
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
|
|
|
|
/// <param name="dateadded">The date the object was added.</param>
|
|
|
|
|
/// <param name="datemodified">The date the object was last modified.</param>
|
|
|
|
|
/// <param name="_musicalbum0"></param>
|
|
|
|
|
public MusicAlbumMetadata(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
|
|
|
|
{
|
|
|
|
@ -66,6 +70,8 @@ namespace Jellyfin.Data.Entities
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="title">The title or name of the object.</param>
|
|
|
|
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
|
|
|
|
/// <param name="dateadded">The date the object was added.</param>
|
|
|
|
|
/// <param name="datemodified">The date the object was last modified.</param>
|
|
|
|
|
/// <param name="_musicalbum0"></param>
|
|
|
|
|
public static MusicAlbumMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
|
|
|
|
{
|
|
|
|
|