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; }
}
}