diff --git a/Jellyfin.Data/Entities/Security/Device.cs b/Jellyfin.Data/Entities/Security/Device.cs index 9490323b19..67d7f78eda 100644 --- a/Jellyfin.Data/Entities/Security/Device.cs +++ b/Jellyfin.Data/Entities/Security/Device.cs @@ -2,14 +2,13 @@ using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Globalization; -using Jellyfin.Data.Interfaces; namespace Jellyfin.Data.Entities.Security { /// /// An entity representing a device. /// - public class Device : IAuditableEntity + public class Device { /// /// Initializes a new instance of the class. @@ -85,10 +84,14 @@ namespace Jellyfin.Data.Entities.Security /// public bool IsActive { get; set; } - /// + /// + /// Gets or sets the date created. + /// public DateTime DateCreated { get; set; } - /// + /// + /// Gets or sets the date modified. + /// public DateTime DateModified { get; set; } /// diff --git a/Jellyfin.Data/Interfaces/IAuditableEntity.cs b/Jellyfin.Data/Interfaces/IAuditableEntity.cs deleted file mode 100644 index 4420446ae6..0000000000 --- a/Jellyfin.Data/Interfaces/IAuditableEntity.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; - -namespace Jellyfin.Data.Interfaces -{ - /// - /// An interface representing an entity that has creation/modification dates. - /// - public interface IAuditableEntity - { - /// - /// Gets the date this entity was created. - /// - public DateTime DateCreated { get; } - - /// - /// Gets or sets the date this entity was modified. - /// - public DateTime DateModified { get; set; } - } -}