jellyfin/MediaBrowser.Controller/Entities/IHasStartDate.cs

15 lines
325 B
C#

using System;
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Interface for items that have a start date.
/// </summary>
public interface IHasStartDate
{
/// <summary>
/// Gets or sets the start date.
/// </summary>
DateTime StartDate { get; set; }
}
}