repo creation with initial code after cloning public repo
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using System.Collections.Generic;
|
||||
using Jellyfin.Database.Implementations.Interfaces;
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Entities.Libraries
|
||||
{
|
||||
/// <summary>
|
||||
/// An entity representing a track.
|
||||
/// </summary>
|
||||
public class Track : LibraryItem, IHasReleases
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Track"/> class.
|
||||
/// </summary>
|
||||
/// <param name="library">The library.</param>
|
||||
public Track(Library library) : base(library)
|
||||
{
|
||||
Releases = new HashSet<Release>();
|
||||
TrackMetadata = new HashSet<TrackMetadata>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the track number.
|
||||
/// </summary>
|
||||
public int? TrackNumber { get; set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public virtual ICollection<Release> Releases { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a collection containing the track metadata.
|
||||
/// </summary>
|
||||
public virtual ICollection<TrackMetadata> TrackMetadata { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user