jellyfin/MediaBrowser.Controller/Entities/AdultVideo.cs

20 lines
461 B
C#
Raw Normal View History

2014-11-16 22:46:01 +00:00
using System;
2014-10-02 00:28:16 +00:00
using System.Collections.Generic;
2014-02-11 21:41:01 +00:00
2013-07-16 18:47:05 +00:00
namespace MediaBrowser.Controller.Entities
{
2014-10-02 00:28:16 +00:00
[Obsolete]
2014-10-28 23:17:55 +00:00
public class AdultVideo : Video, IHasProductionLocations, IHasTaglines
2013-07-16 18:47:05 +00:00
{
2014-05-16 19:16:29 +00:00
public List<string> ProductionLocations { get; set; }
2014-02-11 21:41:01 +00:00
public List<string> Taglines { get; set; }
public AdultVideo()
{
Taglines = new List<string>();
2014-05-16 19:16:29 +00:00
ProductionLocations = new List<string>();
2014-02-11 21:41:01 +00:00
}
2013-07-16 18:47:05 +00:00
}
}