aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Track.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/Track.cs')
-rw-r--r--Jellyfin.Data/Entities/Track.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/Jellyfin.Data/Entities/Track.cs b/Jellyfin.Data/Entities/Track.cs
index 50ee43042..079d73d2b 100644
--- a/Jellyfin.Data/Entities/Track.cs
+++ b/Jellyfin.Data/Entities/Track.cs
@@ -1,15 +1,9 @@
using System;
using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.ComponentModel;
-using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
-using System.Linq;
-using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- [Table("Track")]
public partial class Track : LibraryItem
{
partial void Init();
@@ -17,7 +11,7 @@ namespace Jellyfin.Data.Entities
/// <summary>
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </summary>
- protected Track() : base()
+ protected Track()
{
// NOTE: This class has one-to-one associations with LibraryRoot, LibraryItem and CollectionItem.
// One-to-one associations are not validated in constructors since this causes a scenario where each one must be constructed before the other.