IHasStartDate.cs 150 B

123456789
  1. using System;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. public interface IHasStartDate
  5. {
  6. DateTime StartDate { get; set; }
  7. }
  8. }