You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Jellyfin.Data/Interfaces/IAuditableEntity.cs

21 lines
524 B

using System;
namespace Jellyfin.Data.Interfaces
{
/// <summary>
/// An interface representing an entity that has creation/modification dates.
/// </summary>
public interface IAuditableEntity
{
/// <summary>
/// Gets the date this entity was created.
/// </summary>
public DateTime DateCreated { get; }
/// <summary>
/// Gets or sets the date this entity was modified.
/// </summary>
public DateTime DateModified { get; set; }
}
}