jellyfin/MediaBrowser.Controller/Entities/IHasStartDate.cs

10 lines
150 B
C#

using System;
namespace MediaBrowser.Controller.Entities
{
public interface IHasStartDate
{
DateTime StartDate { get; set; }
}
}