jellyfin/MediaBrowser.Controller/Entities/IHasStartDate.cs

10 lines
150 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Entities
{
public interface IHasStartDate
{
DateTime StartDate { get; set; }
}
}