Photo.cs 540 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. public class Photo : BaseItem, IHasTags, IHasTaglines
  5. {
  6. public List<string> Tags { get; set; }
  7. public List<string> Taglines { get; set; }
  8. public Photo()
  9. {
  10. Tags = new List<string>();
  11. Taglines = new List<string>();
  12. }
  13. public override string MediaType
  14. {
  15. get
  16. {
  17. return Model.Entities.MediaType.Photo;
  18. }
  19. }
  20. }
  21. }