jellyfin/MediaBrowser.Controller/Entities/IHasStartDate.cs

10 lines
150 B
C#
Raw Normal View History

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