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