jellyfin/MediaBrowser.Controller/Entities/IHasStartDate.cs

10 lines
153 B
C#
Raw Normal View History

2015-06-01 16:49:23 +02:00
using System;
namespace MediaBrowser.Controller.Entities
{
public interface IHasStartDate
{
DateTime StartDate { get; set; }
}
}