Series.cs 301 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Entities.TV
  4. {
  5. public class Series : Folder
  6. {
  7. public string Status { get; set; }
  8. public IEnumerable<DayOfWeek> AirDays { get; set; }
  9. public string AirTime { get; set; }
  10. }
  11. }