mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-31 08:07:36 +00:00
15 lines
325 B
C#
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; }
|
|
}
|
|
}
|